js-hub / utils /isBackend.ts
coyotte508's picture
coyotte508 HF Staff
Add 1 files
21dd449 verified
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;