mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-25 19:30:17 +08:00
4 lines
153 B
TypeScript
4 lines
153 B
TypeScript
export const isMac = process.platform === 'darwin'
|
|
export const isWin = process.platform === 'win32'
|
|
export const isLinux = process.platform === 'linux'
|