aboutsummaryrefslogtreecommitdiff
path: root/src/node-fallbacks/isomorphic-fetch.js
blob: 4e5e96bddb482edde087d16bf83c830e3ea26d80 (plain) (blame)
1
2
3
4
5
6
7
8
var fetchHandler = globalThis.fetch;

if ("Bun" in globalThis) {
  fetchHandler = Bun.fetch;
}

export default fetchHandler;
export { fetchHandler as fetch };