Convert src/runtime/internal/globals.ts to JavaScript

pull/8569/head
S. Elliott Johnson 3 years ago
parent 9ac958a77a
commit fe9a69ca6f

@ -1,7 +1,9 @@
declare const global: any;
export const globals = (typeof window !== 'undefined'
? window
: typeof globalThis !== 'undefined'
? globalThis
: global) as unknown as typeof globalThis;
? window
: typeof globalThis !== 'undefined'
? globalThis
: global);

Loading…
Cancel
Save