Leon4gr45's picture
Upload folder using huggingface_hub (part 5)
01e6679 verified
Raw
History Blame Contribute Delete
271 Bytes
const isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined";
const isWebWorker =
typeof self === "object" && self.constructor && self.constructor.name === "DedicatedWorkerGlobalScope";
export const isBackend = !isBrowser && !isWebWorker;