index.ts 152 B

12345678
  1. // @ts-nocheck
  2. // #ifdef WEB
  3. export const isBrowser = typeof window !== 'undefined';
  4. // #endif
  5. // #ifndef WEB
  6. export const isBrowser = false;
  7. // #endif