mirror of
https://github.com/heyman/heynote.git
synced 2024-11-08 00:54:31 +01:00
7 lines
179 B
TypeScript
7 lines
179 B
TypeScript
|
const os = require('os');
|
||
|
|
||
|
export const isMac = os.platform() === "darwin";
|
||
|
export const isWindows = os.platform() === "win32";
|
||
|
export const isLinux = os.platform() === "linux";
|
||
|
|