this repo has no description
at main 8 lines 204 B view raw
1/** @type {typeof globalThis} */ 2export const globals = 3 typeof window !== 'undefined' 4 ? window 5 : typeof globalThis !== 'undefined' 6 ? globalThis 7 : // @ts-ignore Node typings have this 8 global;