Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2022-01-16 17:09:58 +0300
committerMichaël Zasso <targos@protonmail.com>2022-01-18 18:03:23 +0300
commit325b9473c03b2aaf28db44400a4093ed966a745b (patch)
tree73355674528799bbc357ebe91f1ff1fcdcc9b40f /doc/api/stream.md
parentcc97ea5df611695e9f00a455b8e3f6d8a27886d0 (diff)
2022-01-18, Version 17.4.0 (Current)
Notable changes: child_process: * (SEMVER-MINOR) add support for URL to `cp.fork` (Antoine du Hamel) https://github.com/nodejs/node/pull/41225 crypto: * (SEMVER-MINOR) alias webcrypto.subtle and webcrypto.getRandomValues on crypto (James M Snell) https://github.com/nodejs/node/pull/41266 doc: * add Mesteery to collaborators (Mestery) https://github.com/nodejs/node/pull/41543 events: * (SEMVER-MINOR) graduate capturerejections to supported (James M Snell) https://github.com/nodejs/node/pull/41267 * (SEMVER-MINOR) add EventEmitterAsyncResource to core (James M Snell) https://github.com/nodejs/node/pull/41246 loader: * (SEMVER-MINOR) return package format from defaultResolve if known (Gabriel Bota) https://github.com/nodejs/node/pull/40980 perf_hooks: * (SEMVER-MINOR) multiple fixes for Histogram (James M Snell) https://github.com/nodejs/node/pull/41153 stream: * (SEMVER-MINOR) add filter method to readable (Benjamin Gruenbaum, Robert Nagy) https://github.com/nodejs/node/pull/41354 * (SEMVER-MINOR) add isReadable helper (Robert Nagy) https://github.com/nodejs/node/pull/41199 * (SEMVER-MINOR) add map method to Readable (Benjamin Gruenbaum, Robert Nagy) https://github.com/nodejs/node/pull/40815 PR-URL: https://github.com/nodejs/node/pull/41557
Diffstat (limited to 'doc/api/stream.md')
-rw-r--r--doc/api/stream.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/stream.md b/doc/api/stream.md
index 77afb18ff56..43e5da5206b 100644
--- a/doc/api/stream.md
+++ b/doc/api/stream.md
@@ -1740,7 +1740,7 @@ showBoth();
### `readable.map(fn[, options])`
<!-- YAML
-added: REPLACEME
+added: v17.4.0
-->
> Stability: 1 - Experimental
@@ -1784,7 +1784,7 @@ for await (const result of dnsResults) {
### `readable.filter(fn[, options])`
<!-- YAML
-added: REPLACEME
+added: v17.4.0
-->
> Stability: 1 - Experimental
@@ -2393,7 +2393,7 @@ Returns whether the stream has encountered an error.
### `stream.isReadable(stream)`
<!-- YAML
-added: REPLACEME
+added: v17.4.0
-->
> Stability: 1 - Experimental