browser.js 259 B

12345678910
  1. const globalObject = (function () {
  2. if (typeof globalThis !== "undefined") {
  3. return globalThis;
  4. }
  5. if (typeof self !== "undefined") {
  6. return self;
  7. }
  8. return window;
  9. }());
  10. export const { FormData, Blob, File } = globalObject;