blob: bd21be49ed833365bb8db5c02a49b718f7ca5020 (
plain)
1
2
3
4
5
6
7
8
|
/** @type {typeof globalThis} */
export const globals =
typeof window !== 'undefined'
? window
: typeof globalThis !== 'undefined'
? globalThis
: // @ts-ignore Node typings have this
global;
|