版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

25 строки
685 B

  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. const Blob = globalThis.Blob;
  4. const File = globalThis.File;
  5. const FormData = globalThis.FormData;
  6. const Headers = globalThis.Headers;
  7. const Request = globalThis.Request;
  8. const Response = globalThis.Response;
  9. const AbortController = globalThis.AbortController;
  10. const fetch = globalThis.fetch || (() => {
  11. throw new Error("global fetch is not available!");
  12. });
  13. exports.AbortController = AbortController;
  14. exports.Blob = Blob;
  15. exports.File = File;
  16. exports.FormData = FormData;
  17. exports.Headers = Headers;
  18. exports.Request = Request;
  19. exports.Response = Response;
  20. exports.default = fetch;
  21. exports.fetch = fetch;