mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-14 21:59:25 +08:00
4 lines
166 B
TypeScript
4 lines
166 B
TypeScript
export const isWindows = process.platform === 'win32';
|
|
export const isMacintosh = process.platform === 'darwin';
|
|
export const isLinux = process.platform === 'linux';
|