File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ const fetchProgressDecorator = (total, fn) => {
17
17
} ) ) ;
18
18
}
19
19
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 ';
22
22
23
23
// used only inside the fetch adapter
24
- const encodeText = isFetchSupported && ( typeof TextEncoder !== 'undefined ' ?
24
+ const encodeText = isFetchSupported && ( typeof TextEncoder === 'function ' ?
25
25
( ( encoder ) => ( str ) => encoder . encode ( str ) ) ( new TextEncoder ( ) ) :
26
26
async ( str ) => new Uint8Array ( await new Response ( str ) . arrayBuffer ( ) )
27
27
) ;
You can’t perform that action at this time.
0 commit comments