We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
sindresorhus
szmarczak
sholladay
Learn more about funding links in repositories.
Report abuse
1 parent 719e549 commit 00e45d0Copy full SHA for 00e45d0
source/core/constants.ts
@@ -5,8 +5,9 @@ export const supportsRequestStreams = (() => {
5
let duplexAccessed = false;
6
let hasContentType = false;
7
const supportsReadableStream = typeof globalThis.ReadableStream === 'function';
8
+ const supportsRequest = typeof globalThis.Request === 'function';
9
- if (supportsReadableStream) {
10
+ if (supportsReadableStream && supportsRequest) {
11
hasContentType = new globalThis.Request('https://a.com', {
12
body: new globalThis.ReadableStream(),
13
method: 'POST',
0 commit comments