mirror of
https://github.com/heyman/heynote.git
synced 2025-08-09 14:55:05 +02:00
Implement persistent buffer
This commit is contained in:
6
electron/detect-platform.ts
Normal file
6
electron/detect-platform.ts
Normal 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";
|
||||
|
Reference in New Issue
Block a user