Implement persistent buffer

This commit is contained in:
Jonatan Heyman
2023-01-19 00:20:50 +01:00
parent c4e78a70ce
commit 14152fbede
10 changed files with 171 additions and 48 deletions

View File

@ -0,0 +1,6 @@
const os = require('os');
export const isMac = os.platform() === "darwin";
export const isWindows = os.platform() === "win32";
export const isLinux = os.platform() === "linux";