cxc-szcx-uniapp/uni_modules/lime-shared/isBrowser/index.ts
2024-12-04 11:10:13 +08:00

8 lines
152 B
TypeScript

// @ts-nocheck
// #ifdef WEB
export const isBrowser = typeof window !== 'undefined';
// #endif
// #ifndef WEB
export const isBrowser = false;
// #endif