mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-23 07:17:00 -04:00
4 lines
156 B
TypeScript
4 lines
156 B
TypeScript
export const isMac = process.platform === "darwin";
|
|
export const isWin = process.platform === "win32";
|
|
export const isLinux = process.platform === "linux";
|