_Blob
import { _Blob } from "https://raw.githubusercontent.com/i-xi-dev/bytes.es/4.4.2/deps.ts";
If the globalThis
has a Blob
, or if the node:buffer
package has a Blob
, then the Blob
constructor.
Otherwise referencing it will throw a ReferenceError
.
-
Browser References the
globalThis.Blob
-
Deno References the
globalThis.Blob
-
Node.js 18.0+ References the
globalThis.Blob
-
Node.js 15.7+ or 14.18+ References the
Blob
ofnode:buffer
package
let _Blob: _BlobConstructor;