elearning/Frontend-Learner/node_modules/unenv/dist/runtime/npm/cross-fetch.mjs

7 lines
257 B
JavaScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
// 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;