You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 18, 2022. It is now read-only.
@@ -224,7 +228,7 @@ Due to the nature of Node.js, the following properties are not implemented at th
224
228
-`integrity`
225
229
-`keepalive`
226
230
227
-
The following node-fetch extension properties are provided:
231
+
The following node-fetch-npm extension properties are provided:
228
232
229
233
-`follow`
230
234
-`compress`
@@ -249,7 +253,7 @@ In most cases, directly `fetch(url, options)` is simpler than creating a `Reques
249
253
250
254
An HTTP(S) response. This class implements the [Body](#iface-body) interface.
251
255
252
-
The following properties are not implemented in node-fetch at this moment:
256
+
The following properties are not implemented in node-fetch-npm at this moment:
253
257
254
258
-`Response.error()`
255
259
-`Response.redirect()`
@@ -310,7 +314,7 @@ const copyOfHeaders = new Headers(headers);
310
314
311
315
`Body` is an abstract interface with methods that are applicable to both `Request` and `Response` classes.
312
316
313
-
The following methods are not yet implemented in node-fetch at this moment:
317
+
The following methods are not yet implemented in node-fetch-npm at this moment:
314
318
315
319
-`formData()`
316
320
@@ -320,7 +324,7 @@ The following methods are not yet implemented in node-fetch at this moment:
320
324
321
325
* Node.js [`Readable` stream][node-readable]
322
326
323
-
The data encapsulated in the `Body` object. Note that while the [Fetch Standard][whatwg-fetch] requires the property to always be a WHATWG `ReadableStream`, in node-fetch it is a Node.js [`Readable` stream][node-readable].
327
+
The data encapsulated in the `Body` object. Note that while the [Fetch Standard][whatwg-fetch] requires the property to always be a WHATWG `ReadableStream`, in node-fetch-npm it is a Node.js [`Readable` stream][node-readable].
324
328
325
329
#### body.bodyUsed
326
330
@@ -343,15 +347,15 @@ Consume the body and return a promise that will resolve to one of these formats.
343
347
344
348
#### body.buffer()
345
349
346
-
<small>*(node-fetch extension)*</small>
350
+
<small>*(node-fetch-npm extension)*</small>
347
351
348
352
* Returns: <code>Promise<Buffer></code>
349
353
350
354
Consume the body and return a promise that will resolve to a Buffer.
351
355
352
356
#### body.textConverted()
353
357
354
-
<small>*(node-fetch extension)*</small>
358
+
<small>*(node-fetch-npm extension)*</small>
355
359
356
360
* Returns: <code>Promise<String></code>
357
361
@@ -360,7 +364,7 @@ Identical to `body.text()`, except instead of always converting to UTF-8, encodi
360
364
<aid="class-fetcherror"></a>
361
365
### Class: FetchError
362
366
363
-
<small>*(node-fetch extension)*</small>
367
+
<small>*(node-fetch-npm extension)*</small>
364
368
365
369
An operational error in the fetching process. See [ERROR-HANDLING.md][] for more info.
366
370
@@ -374,13 +378,13 @@ MIT
374
378
Thanks to [github/fetch](https://github.com/github/fetch) for providing a solid implementation reference.
0 commit comments