mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 14:31:16 +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';
|