aboutsummaryrefslogtreecommitdiff
path: root/src/js/thirdparty/isomorphic-fetch.ts
blob: 51fa2975f83c27748586d994b8b8c857967145ca (plain) (blame)
1
2
3
4
5
const bunFetch = Bun.fetch;
const fetch = (...args: Parameters<typeof bunFetch>) => bunFetch(...args);
fetch.default = fetch;
fetch.fetch = fetch;
export default fetch;