mirror of
https://github.com/toeverything/AFFiNE.git
synced 2025-01-06 00:02:49 +03:00
8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
export const isMacOS = () => {
|
|
return process.platform === 'darwin';
|
|
};
|
|
|
|
export const isWindows = () => {
|
|
return process.platform === 'win32';
|
|
};
|