aboutsummaryrefslogtreecommitdiff
path: root/src/js/thirdparty/isomorphic-fetch.js
blob: 59c8a6d06d249a88cd3b591395d1777555714eb3 (plain) (blame)
1
2
3
4
5
const bunFetch = Bun.fetch;
const fetch = (...args) => bunFetch(...args);
fetch.default = fetch;
fetch.fetch = fetch;
export default fetch;