7 lines
257 B
JavaScript
7 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;
|