mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2026-01-25 21:22:01 +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'
|