elearning/Frontend-Learner/node_modules/unenv/dist/runtime/npm/cross-fetch.mjs
2026-01-13 10:48:02 +07:00

6 lines
257 B
JavaScript

// https://github.com/lquixada/cross-fetch
export const fetch = (...args) => globalThis.fetch(...args);
export default fetch;
export const Headers = globalThis.Headers;
export const Request = globalThis.Request;
export const Response = globalThis.Response;