node-ejs-renderer/node_modules/formdata-node/lib/esm/browser.js
2024-06-09 13:55:01 -04:00

11 lines
259 B
JavaScript

const globalObject = (function () {
if (typeof globalThis !== "undefined") {
return globalThis;
}
if (typeof self !== "undefined") {
return self;
}
return window;
}());
export const { FormData, Blob, File } = globalObject;