File size: 204 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 |
/** @type {typeof globalThis} */
export const globals =
typeof window !== 'undefined'
? window
: typeof globalThis !== 'undefined'
? globalThis
: // @ts-ignore Node typings have this
global;
|