10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
|
|
/**
|
||
|
|
* @description 用于书写判断语句
|
||
|
|
*/
|
||
|
|
|
||
|
|
import { getOS } from '@/utils/utils'
|
||
|
|
|
||
|
|
export const isWindows = getOS().toLowerCase() === 'windows'
|
||
|
|
|
||
|
|
export const isMac = getOS().toLowerCase() === 'macos'
|