UNPKG

@huggingface/blob

Version:

Utilities to convert URLs and files to Blobs, internally used by Hugging Face libs

7 lines (4 loc) 271 B
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;