summaryrefslogtreecommitdiff
path: root/doc/api/stream.md
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2021-08-25 09:01:17 +0200
committerMichaël Zasso <targos@protonmail.com>2021-08-25 09:01:26 +0200
commit93553dc3c3c79e4aa37e1448182623669b4eeb23 (patch)
treee9731fec4ec7455333a7d35c5cdf2c9361956835 /doc/api/stream.md
parentf98311a7c800aa6d04a485cd336c3da93bc5bd78 (diff)
downloadnode-new-93553dc3c3c79e4aa37e1448182623669b4eeb23.tar.gz
2021-08-25, Version 16.8.0 (Current)v16.8.0v16.8.0-proposal
Notable changes: doc: * deprecate type coercion for `dns.lookup` options (Antoine du Hamel) https://github.com/nodejs/node/pull/38906 stream: * (SEMVER-MINOR) add `stream.Duplex.from` utility (Robert Nagy) https://github.com/nodejs/node/pull/39519 * (SEMVER-MINOR) add `isDisturbed` helper (Robert Nagy) https://github.com/nodejs/node/pull/39628 util: * (SEMVER-MINOR) expose `toUSVString` (Robert Nagy) https://github.com/nodejs/node/pull/39814 PR-URL: https://github.com/nodejs/node/pull/39875
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 26734fad48..21abb6e20b 100644
--- a/doc/api/stream.md
+++ b/doc/api/stream.md
@@ -1261,7 +1261,7 @@ the stream has not been destroyed or emitted `'error'` or `'end'`.
##### `readable.readableAborted`
<!-- YAML
-added: REPLACEME
+added: v16.8.0
-->
> Stability: 1 - Experimental
@@ -1956,7 +1956,7 @@ for performance reasons.
### `stream.Readable.isDisturbed(stream)`
<!-- YAML
-added: REPLACEME
+added: v16.8.0
-->
> Stability: 1 - Experimental
@@ -1968,7 +1968,7 @@ Returns whether the stream has been read from or cancelled.
### `stream.Duplex.from(src)`
<!-- YAML
-added: REPLACEME
+added: v16.8.0
-->
* `src` {Stream|Blob|ArrayBuffer|string|Iterable|AsyncIterable|