mirror of
https://github.com/TheFunny/ArisuAutoSweeper
synced 2025-12-19 08:35:30 +00: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';
|