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 };
efactor/markdoc-renderer Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/packages/astro/test/fixtures/error-non-error (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2024-02-23Fixes edge middleware calling nested routes (#10215)Gravatar Matthew Phillips 2-1/+6
2024-02-23Adds an error message for non-string transition:name values (#10205)Gravatar Martin Trapp 2-0/+8
2024-02-23[ci] formatGravatar Furkan Erdem 1-1/+1
2024-02-23Fix(node): Custom headers are not present in responses from standalone Node s...Gravatar Furkan Erdem 8-0/+163