DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
204 Bytes
/** @type {typeof globalThis} */
export const globals =
typeof window !== 'undefined'
? window
: typeof globalThis !== 'undefined'
? globalThis
: // @ts-ignore Node typings have this
global;