mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-14 10:24:23 +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';
|
|
};
|