SANDRAMSC's picture
Updated README.md with Hugging Face configuration
51ddcbf
raw
history blame contribute delete
259 Bytes
const globalObject = (function () {
if (typeof globalThis !== "undefined") {
return globalThis;
}
if (typeof self !== "undefined") {
return self;
}
return window;
}());
export const { FormData, Blob, File } = globalObject;