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

13 строки
464 B

  1. const Blob = globalThis.Blob;
  2. const File = globalThis.File;
  3. const FormData = globalThis.FormData;
  4. const Headers = globalThis.Headers;
  5. const Request = globalThis.Request;
  6. const Response = globalThis.Response;
  7. const AbortController = globalThis.AbortController;
  8. const fetch = globalThis.fetch || (() => {
  9. throw new Error("global fetch is not available!");
  10. });
  11. export { AbortController, Blob, File, FormData, Headers, Request, Response, fetch as default, fetch };