We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39c26cd commit 8cd9841Copy full SHA for 8cd9841
1 file changed
src/utils/runtime.ts
@@ -35,7 +35,7 @@ export function runtimeFetch(
35
options?: RuntimeRequestInit,
36
): Promise<RuntimeResponse> {
37
const fetchImpl =
38
- isBunRuntime && typeof globalThis.fetch === 'function'
+ typeof globalThis.fetch === 'function'
39
? globalThis.fetch.bind(globalThis)
40
: nodeFetch;
41
0 commit comments