Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
221 Bytes
const parseIsSsrByDefault = (): boolean =>
!(typeof window !== 'undefined' && window.document && Boolean(window.document.createElement) && window.setTimeout);
export const Global = {
isSsr: parseIsSsrByDefault(),
};