Urara-Blog/node_modules/.pnpm-store/v3/files/21/47e99a7cd8cae3734615d05e2e44398d49f3bb6ccbd50cffba8b107588bd5f008e414e5e894cc1410c45cfd1eb593c14667f0f45164956942283389f7d3ac3
2022-08-14 01:14:53 +08:00

25 lines
761 B
Text

import { c as createFetch } from './chunks/fetch.mjs';
export { F as FetchError, c as createFetch, a as createFetchError } from './chunks/fetch.mjs';
import 'destr';
import 'ufo';
const _globalThis = function() {
if (typeof globalThis !== "undefined") {
return globalThis;
}
if (typeof self !== "undefined") {
return self;
}
if (typeof window !== "undefined") {
return window;
}
if (typeof global !== "undefined") {
return global;
}
throw new Error("unable to locate global object");
}();
const fetch = _globalThis.fetch || (() => Promise.reject(new Error("[ohmyfetch] global.fetch is not supported!")));
const Headers = _globalThis.Headers;
const $fetch = createFetch({ fetch, Headers });
export { $fetch, Headers, fetch };