mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-12 07:28:21 +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';
|