Skip to content

Commit 4f79aef

Browse files
fix(fetch): enhance fetch API detection; (#6413)
1 parent 67d1373 commit 4f79aef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/adapters/fetch.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ const fetchProgressDecorator = (total, fn) => {
1717
}));
1818
}
1919

20-
const isFetchSupported = typeof fetch !== 'undefined';
21-
const isReadableStreamSupported = isFetchSupported && typeof ReadableStream !== 'undefined';
20+
const isFetchSupported = typeof fetch === 'function' && typeof Request === 'function' && typeof Response === 'function';
21+
const isReadableStreamSupported = isFetchSupported && typeof ReadableStream === 'function';
2222

2323
// used only inside the fetch adapter
24-
const encodeText = isFetchSupported && (typeof TextEncoder !== 'undefined' ?
24+
const encodeText = isFetchSupported && (typeof TextEncoder === 'function' ?
2525
((encoder) => (str) => encoder.encode(str))(new TextEncoder()) :
2626
async (str) => new Uint8Array(await new Response(str).arrayBuffer())
2727
);

0 commit comments

Comments
 (0)