rekwest 3.2.0 → 3.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +186 -184
- package/dist/ackn.js +2 -2
- package/dist/cookies.js +3 -0
- package/dist/file.js +4 -4
- package/dist/formdata.js +29 -15
- package/dist/index.js +50 -45
- package/dist/{helpers.js → utils.js} +77 -37
- package/package.json +5 -5
- package/src/ackn.mjs +33 -33
- package/src/cookies.mjs +4 -0
- package/src/file.mjs +2 -2
- package/src/formdata.mjs +239 -224
- package/src/index.mjs +17 -16
- package/src/{helpers.mjs → utils.mjs} +37 -13
package/src/formdata.mjs
CHANGED
|
@@ -1,224 +1,239 @@
|
|
|
1
|
-
import { randomBytes } from 'crypto';
|
|
2
|
-
import http2 from 'http2';
|
|
3
|
-
import { toUSVString } from 'util';
|
|
4
|
-
import { File } from './file.mjs';
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
const
|
|
25
|
-
const
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
this.#
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
this.#ensureArgs(args, 1, '
|
|
175
|
-
const name = toUSVString(args[0]);
|
|
176
|
-
|
|
177
|
-
return this.#entries.
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
this
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
}
|
|
1
|
+
import { randomBytes } from 'node:crypto';
|
|
2
|
+
import http2 from 'node:http2';
|
|
3
|
+
import { toUSVString } from 'node:util';
|
|
4
|
+
import { File } from './file.mjs';
|
|
5
|
+
import {
|
|
6
|
+
APPLICATION_OCTET_STREAM,
|
|
7
|
+
MULTIPART_FORM_DATA,
|
|
8
|
+
} from './mediatypes.mjs';
|
|
9
|
+
import {
|
|
10
|
+
collate,
|
|
11
|
+
tap,
|
|
12
|
+
} from './utils.mjs';
|
|
13
|
+
|
|
14
|
+
const CRLF = '\r\n';
|
|
15
|
+
const {
|
|
16
|
+
HTTP2_HEADER_CONTENT_DISPOSITION,
|
|
17
|
+
HTTP2_HEADER_CONTENT_TYPE,
|
|
18
|
+
} = http2.constants;
|
|
19
|
+
|
|
20
|
+
export class FormData {
|
|
21
|
+
|
|
22
|
+
static actuate(fd) {
|
|
23
|
+
const boundary = randomBytes(24).toString('hex');
|
|
24
|
+
const contentType = `${ MULTIPART_FORM_DATA }; boundary=${ boundary }`;
|
|
25
|
+
const prefix = `--${ boundary }${ CRLF }${ HTTP2_HEADER_CONTENT_DISPOSITION }: form-data`;
|
|
26
|
+
|
|
27
|
+
const escape = (str) => str.replace(/\n/g, '%0A').replace(/\r/g, '%0D').replace(/"/g, '%22');
|
|
28
|
+
const normalize = (value) => value.replace(/\r?\n|\r/g, CRLF);
|
|
29
|
+
|
|
30
|
+
return {
|
|
31
|
+
contentType,
|
|
32
|
+
async* [Symbol.asyncIterator]() {
|
|
33
|
+
const encoder = new TextEncoder();
|
|
34
|
+
|
|
35
|
+
for (const [name, value] of fd) {
|
|
36
|
+
if (value.constructor === String) {
|
|
37
|
+
yield encoder.encode(`${ prefix }; name="${
|
|
38
|
+
escape(normalize(name))
|
|
39
|
+
}"${ CRLF.repeat(2) }${ normalize(value) }${ CRLF }`);
|
|
40
|
+
} else {
|
|
41
|
+
yield encoder.encode(`${ prefix }; name="${
|
|
42
|
+
escape(normalize(name))
|
|
43
|
+
}"${ value.name ? `; filename="${ escape(value.name) }"` : '' }${ CRLF }${
|
|
44
|
+
HTTP2_HEADER_CONTENT_TYPE
|
|
45
|
+
}: ${
|
|
46
|
+
value.type || APPLICATION_OCTET_STREAM
|
|
47
|
+
}${ CRLF.repeat(2) }`);
|
|
48
|
+
yield* tap(value);
|
|
49
|
+
yield encoder.encode(CRLF);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
yield encoder.encode(`--${ boundary }--`);
|
|
54
|
+
},
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
static alike(instance) {
|
|
59
|
+
return instance?.constructor.name === FormData.name;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
static #enfoldEntry(name, value, filename) {
|
|
63
|
+
name = toUSVString(name);
|
|
64
|
+
filename &&= toUSVString(filename);
|
|
65
|
+
|
|
66
|
+
if (File.alike(value)) {
|
|
67
|
+
value = new File([value], filename, value);
|
|
68
|
+
} else if (this.#ensureInstance(value)) {
|
|
69
|
+
value.name = filename || value.name;
|
|
70
|
+
} else {
|
|
71
|
+
value = toUSVString(value);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
return {
|
|
75
|
+
name,
|
|
76
|
+
value,
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
static #ensureInstance(value) {
|
|
81
|
+
return File.alike(value) || (value === Object(value) && Reflect.has(value, Symbol.asyncIterator));
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
#entries = [];
|
|
85
|
+
|
|
86
|
+
get [Symbol.toStringTag]() {
|
|
87
|
+
return this.constructor.name;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
constructor(input) {
|
|
91
|
+
if (input === Object(input)
|
|
92
|
+
&& (input?.constructor === Object || Reflect.has(input, Symbol.iterator))) {
|
|
93
|
+
|
|
94
|
+
if (input.constructor !== Object) {
|
|
95
|
+
input = Array.from(input);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
if (Array.isArray(input)) {
|
|
99
|
+
if (!input.every((it) => Array.isArray(it))) {
|
|
100
|
+
throw new TypeError(`Failed to construct '${
|
|
101
|
+
this[Symbol.toStringTag]
|
|
102
|
+
}': The provided value cannot be converted to a sequence.`);
|
|
103
|
+
} else if (!input.every((it) => it.length === 2)) {
|
|
104
|
+
throw new TypeError(`Failed to construct '${
|
|
105
|
+
this[Symbol.toStringTag]
|
|
106
|
+
}': Sequence initializer must only contain pair elements.`);
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
if (input.constructor === Object) {
|
|
111
|
+
input = Object.entries(input);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
input.forEach(([key, value]) => this.append(key, value));
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
#ensureArgs(args, expected, method) {
|
|
119
|
+
if (args.length < expected) {
|
|
120
|
+
throw new TypeError(`Failed to execute '${ method }' on '${
|
|
121
|
+
this[Symbol.toStringTag]
|
|
122
|
+
}': ${ expected } arguments required, but only ${ args.length } present.`);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
if ([
|
|
126
|
+
'append',
|
|
127
|
+
'set',
|
|
128
|
+
].includes(method)) {
|
|
129
|
+
if (args.length === 3 && !this.constructor.#ensureInstance(args[1])) {
|
|
130
|
+
throw new TypeError(`Failed to execute '${ method }' on '${
|
|
131
|
+
this[Symbol.toStringTag]
|
|
132
|
+
}': parameter ${ expected } is not of type 'Blob', 'File' or async iterable.`);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
if (method === 'forEach') {
|
|
137
|
+
if (args[0]?.constructor !== Function) {
|
|
138
|
+
throw new TypeError(`Failed to execute '${ method }' on '${
|
|
139
|
+
this[Symbol.toStringTag]
|
|
140
|
+
}': parameter ${ expected } is not of type 'Function'.`);
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
append(...args) {
|
|
146
|
+
collate(this, FormData);
|
|
147
|
+
this.#ensureArgs(args, 2, 'append');
|
|
148
|
+
this.#entries.push(this.constructor.#enfoldEntry(...args));
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
delete(...args) {
|
|
152
|
+
collate(this, FormData);
|
|
153
|
+
this.#ensureArgs(args, 1, 'delete');
|
|
154
|
+
const name = toUSVString(args[0]);
|
|
155
|
+
|
|
156
|
+
this.#entries = this.#entries.filter((it) => it.name !== name);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
forEach(...args) {
|
|
160
|
+
collate(this, FormData);
|
|
161
|
+
this.#ensureArgs(args, 1, 'forEach');
|
|
162
|
+
const [callback, thisArg] = args;
|
|
163
|
+
|
|
164
|
+
for (const entry of this) {
|
|
165
|
+
Reflect.apply(callback, thisArg, [
|
|
166
|
+
...entry.reverse(),
|
|
167
|
+
this,
|
|
168
|
+
]);
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
get(...args) {
|
|
173
|
+
collate(this, FormData);
|
|
174
|
+
this.#ensureArgs(args, 1, 'get');
|
|
175
|
+
const name = toUSVString(args[0]);
|
|
176
|
+
|
|
177
|
+
return (this.#entries.find((it) => it.name === name) ?? {}).value ?? null;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
getAll(...args) {
|
|
181
|
+
collate(this, FormData);
|
|
182
|
+
this.#ensureArgs(args, 1, 'getAll');
|
|
183
|
+
const name = toUSVString(args[0]);
|
|
184
|
+
|
|
185
|
+
return this.#entries.filter((it) => it.name === name).map((it) => it.value);
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
has(...args) {
|
|
189
|
+
collate(this, FormData);
|
|
190
|
+
this.#ensureArgs(args, 1, 'has');
|
|
191
|
+
const name = toUSVString(args[0]);
|
|
192
|
+
|
|
193
|
+
return !!this.#entries.find((it) => it.name === name);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
set(...args) {
|
|
197
|
+
collate(this, FormData);
|
|
198
|
+
this.#ensureArgs(args, 2, 'set');
|
|
199
|
+
const entry = this.constructor.#enfoldEntry(...args);
|
|
200
|
+
const idx = this.#entries.findIndex((it) => it.name === entry.name);
|
|
201
|
+
|
|
202
|
+
if (idx !== -1) {
|
|
203
|
+
this.#entries.splice(idx, 1, entry);
|
|
204
|
+
} else {
|
|
205
|
+
this.#entries.push(entry);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
* entries() {
|
|
210
|
+
collate(this, FormData);
|
|
211
|
+
for (const { name, value } of this.#entries) {
|
|
212
|
+
yield [
|
|
213
|
+
name,
|
|
214
|
+
value,
|
|
215
|
+
];
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
* keys() {
|
|
220
|
+
collate(this, FormData);
|
|
221
|
+
for (const [name] of this) {
|
|
222
|
+
yield name;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
* values() {
|
|
227
|
+
collate(this, FormData);
|
|
228
|
+
for (const [, value] of this) {
|
|
229
|
+
yield value;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
[Symbol.iterator]() {
|
|
234
|
+
collate(this, FormData);
|
|
235
|
+
|
|
236
|
+
return this.entries();
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
}
|
package/src/index.mjs
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import http from 'http';
|
|
2
|
-
import http2 from 'http2';
|
|
3
|
-
import https from 'https';
|
|
4
|
-
import { setTimeout as setTimeoutPromise } from 'timers/promises';
|
|
1
|
+
import http from 'node:http';
|
|
2
|
+
import http2 from 'node:http2';
|
|
3
|
+
import https from 'node:https';
|
|
4
|
+
import { setTimeout as setTimeoutPromise } from 'node:timers/promises';
|
|
5
5
|
import { ackn } from './ackn.mjs';
|
|
6
6
|
import { Cookies } from './cookies.mjs';
|
|
7
7
|
import { RequestError } from './errors.mjs';
|
|
8
|
+
import { APPLICATION_OCTET_STREAM } from './mediatypes.mjs';
|
|
8
9
|
import {
|
|
9
10
|
admix,
|
|
10
11
|
affix,
|
|
@@ -13,18 +14,18 @@ import {
|
|
|
13
14
|
mixin,
|
|
14
15
|
preflight,
|
|
15
16
|
redirects,
|
|
17
|
+
revise,
|
|
16
18
|
transform,
|
|
17
|
-
} from './
|
|
18
|
-
import { APPLICATION_OCTET_STREAM } from './mediatypes.mjs';
|
|
19
|
+
} from './utils.mjs';
|
|
19
20
|
|
|
20
|
-
export { constants } from 'http2';
|
|
21
|
+
export { constants } from 'node:http2';
|
|
21
22
|
|
|
22
23
|
export * from './ackn.mjs';
|
|
23
24
|
export * from './cookies.mjs';
|
|
24
25
|
export * from './errors.mjs';
|
|
25
26
|
export * from './file.mjs';
|
|
26
27
|
export * from './formdata.mjs';
|
|
27
|
-
export * from './
|
|
28
|
+
export * from './utils.mjs';
|
|
28
29
|
|
|
29
30
|
const {
|
|
30
31
|
HTTP2_HEADER_CONTENT_LENGTH,
|
|
@@ -69,7 +70,7 @@ let defaults = {
|
|
|
69
70
|
};
|
|
70
71
|
|
|
71
72
|
export default async function rekwest(url, options = {}) {
|
|
72
|
-
url = options
|
|
73
|
+
({ url } = revise({ options, url }));
|
|
73
74
|
if (!options.redirected) {
|
|
74
75
|
options = merge(rekwest.defaults, options);
|
|
75
76
|
}
|
|
@@ -98,8 +99,8 @@ export default async function rekwest(url, options = {}) {
|
|
|
98
99
|
|
|
99
100
|
options = preflight(options);
|
|
100
101
|
|
|
101
|
-
const { cookies, digest, follow, h2, redirect, redirected, thenable
|
|
102
|
-
const { request } = (protocol === 'http:' ? http : https);
|
|
102
|
+
const { cookies, digest, follow, h2, redirect, redirected, thenable } = options;
|
|
103
|
+
const { request } = (url.protocol === 'http:' ? http : https);
|
|
103
104
|
let { body } = options;
|
|
104
105
|
|
|
105
106
|
const promise = new Promise((resolve, reject) => {
|
|
@@ -240,24 +241,24 @@ export default async function rekwest(url, options = {}) {
|
|
|
240
241
|
|
|
241
242
|
Reflect.defineProperty(rekwest, 'stream', {
|
|
242
243
|
enumerable: true,
|
|
243
|
-
value
|
|
244
|
+
value(url, options = {}) {
|
|
245
|
+
({ url } = revise({ options, url }));
|
|
244
246
|
options = preflight({
|
|
245
|
-
url,
|
|
246
247
|
...merge(rekwest.defaults, {
|
|
247
248
|
headers: { [HTTP2_HEADER_CONTENT_TYPE]: APPLICATION_OCTET_STREAM },
|
|
248
249
|
}, options),
|
|
249
250
|
redirect: redirects.manual,
|
|
250
251
|
});
|
|
251
252
|
|
|
252
|
-
const { h2
|
|
253
|
-
const { request } = (protocol === 'http:' ? http : https);
|
|
253
|
+
const { h2 } = options;
|
|
254
|
+
const { request } = (url.protocol === 'http:' ? http : https);
|
|
254
255
|
let client, req;
|
|
255
256
|
|
|
256
257
|
if (h2) {
|
|
257
258
|
client = http2.connect(url.origin, options);
|
|
258
259
|
req = client.request(options.headers, options);
|
|
259
260
|
} else {
|
|
260
|
-
req = request(
|
|
261
|
+
req = request(url, options);
|
|
261
262
|
}
|
|
262
263
|
|
|
263
264
|
affix(client, req, options);
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { Blob } from 'buffer';
|
|
2
|
-
import http2 from 'http2';
|
|
1
|
+
import { Blob } from 'node:buffer';
|
|
2
|
+
import http2 from 'node:http2';
|
|
3
3
|
import {
|
|
4
4
|
PassThrough,
|
|
5
5
|
Readable,
|
|
6
|
-
} from 'stream';
|
|
6
|
+
} from 'node:stream';
|
|
7
7
|
import {
|
|
8
8
|
promisify,
|
|
9
9
|
types,
|
|
10
|
-
} from 'util';
|
|
11
|
-
import zlib from 'zlib';
|
|
10
|
+
} from 'node:util';
|
|
11
|
+
import zlib from 'node:zlib';
|
|
12
12
|
import { Cookies } from './cookies.mjs';
|
|
13
13
|
import { TimeoutError } from './errors.mjs';
|
|
14
14
|
import { File } from './file.mjs';
|
|
@@ -86,6 +86,12 @@ export const affix = (client, req, options) => {
|
|
|
86
86
|
});
|
|
87
87
|
};
|
|
88
88
|
|
|
89
|
+
export const collate = (entity, primordial) => {
|
|
90
|
+
if (!(entity instanceof primordial)) {
|
|
91
|
+
throw new TypeError('Illegal invocation');
|
|
92
|
+
}
|
|
93
|
+
};
|
|
94
|
+
|
|
89
95
|
export const compress = (buf, encoding, { async = false } = {}) => {
|
|
90
96
|
encoding &&= encoding.match(/(?<encoding>\bbr\b|\bdeflate\b|\bgzip\b)/i)?.groups.encoding.toLowerCase();
|
|
91
97
|
const compressor = {
|
|
@@ -163,7 +169,8 @@ export const mixin = (res, { digest = false, parse = false } = {}) => {
|
|
|
163
169
|
Object.defineProperties(res, {
|
|
164
170
|
arrayBuffer: {
|
|
165
171
|
enumerable: true,
|
|
166
|
-
value
|
|
172
|
+
value() {
|
|
173
|
+
collate(this, res?.constructor);
|
|
167
174
|
parse &&= false;
|
|
168
175
|
|
|
169
176
|
return this.body().then(({ buffer, byteLength, byteOffset }) => buffer.slice(
|
|
@@ -174,19 +181,25 @@ export const mixin = (res, { digest = false, parse = false } = {}) => {
|
|
|
174
181
|
},
|
|
175
182
|
blob: {
|
|
176
183
|
enumerable: true,
|
|
177
|
-
value
|
|
184
|
+
value() {
|
|
185
|
+
collate(this, res?.constructor);
|
|
186
|
+
|
|
178
187
|
return this.arrayBuffer().then((res) => new Blob([res]));
|
|
179
188
|
},
|
|
180
189
|
},
|
|
181
190
|
json: {
|
|
182
191
|
enumerable: true,
|
|
183
|
-
value
|
|
192
|
+
value() {
|
|
193
|
+
collate(this, res?.constructor);
|
|
194
|
+
|
|
184
195
|
return this.text().then((res) => JSON.parse(res));
|
|
185
196
|
},
|
|
186
197
|
},
|
|
187
198
|
text: {
|
|
188
199
|
enumerable: true,
|
|
189
|
-
value
|
|
200
|
+
value() {
|
|
201
|
+
collate(this, res?.constructor);
|
|
202
|
+
|
|
190
203
|
return this.blob().then((blob) => blob.text());
|
|
191
204
|
},
|
|
192
205
|
},
|
|
@@ -197,8 +210,10 @@ export const mixin = (res, { digest = false, parse = false } = {}) => {
|
|
|
197
210
|
body: {
|
|
198
211
|
enumerable: true,
|
|
199
212
|
value: async function () {
|
|
213
|
+
collate(this, res?.constructor);
|
|
214
|
+
|
|
200
215
|
if (this.bodyUsed) {
|
|
201
|
-
throw new TypeError('Response stream already read
|
|
216
|
+
throw new TypeError('Response stream already read');
|
|
202
217
|
}
|
|
203
218
|
|
|
204
219
|
let spool = [];
|
|
@@ -239,7 +254,7 @@ export const mixin = (res, { digest = false, parse = false } = {}) => {
|
|
|
239
254
|
},
|
|
240
255
|
bodyUsed: {
|
|
241
256
|
enumerable: true,
|
|
242
|
-
get
|
|
257
|
+
get() {
|
|
243
258
|
return this.readableEnded;
|
|
244
259
|
},
|
|
245
260
|
},
|
|
@@ -247,8 +262,7 @@ export const mixin = (res, { digest = false, parse = false } = {}) => {
|
|
|
247
262
|
};
|
|
248
263
|
|
|
249
264
|
export const preflight = (options) => {
|
|
250
|
-
const
|
|
251
|
-
const { cookies, h2 = false, method = HTTP2_METHOD_GET, headers, redirected } = options;
|
|
265
|
+
const { cookies, h2 = false, headers, method = HTTP2_METHOD_GET, redirected, url } = options;
|
|
252
266
|
|
|
253
267
|
if (h2) {
|
|
254
268
|
options.endStream = [
|
|
@@ -316,6 +330,16 @@ export const redirects = {
|
|
|
316
330
|
manual: 'manual',
|
|
317
331
|
};
|
|
318
332
|
|
|
333
|
+
export const revise = ({ url, options }) => {
|
|
334
|
+
if (options.trimTrailingSlashes) {
|
|
335
|
+
url = `${ url }`.replace(/(?<!:)\/+/gi, '/');
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
url = new URL(url);
|
|
339
|
+
|
|
340
|
+
return Object.assign(options, { url });
|
|
341
|
+
};
|
|
342
|
+
|
|
319
343
|
export async function* tap(value) {
|
|
320
344
|
if (Reflect.has(value, Symbol.asyncIterator)) {
|
|
321
345
|
yield* value;
|