summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2019-07-15 12:15:20 +0200
committerMichaƫl Zasso <targos@protonmail.com>2019-07-20 11:13:03 +0200
commit8ddf86b3d4aba02d60d8c8af0fe2cd41ba38a4d2 (patch)
tree61b7a187d4fa57cf7d473bd1cc55a41d70610e07
parentaba0cf33ecf97fe690f0b5de5c3c103076e23b3a (diff)
downloadandroid-node-v8-8ddf86b3d4aba02d60d8c8af0fe2cd41ba38a4d2.tar.gz
android-node-v8-8ddf86b3d4aba02d60d8c8af0fe2cd41ba38a4d2.tar.bz2
android-node-v8-8ddf86b3d4aba02d60d8c8af0fe2cd41ba38a4d2.zip
doc: add missing version metadata for Readable.from
Fixes: https://github.com/nodejs/node/issues/28693 PR-URL: https://github.com/nodejs/node/pull/28695 Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
-rw-r--r--doc/api/stream.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/api/stream.md b/doc/api/stream.md
index c0a14c7aaa..2cdd6ffde3 100644
--- a/doc/api/stream.md
+++ b/doc/api/stream.md
@@ -1517,6 +1517,9 @@ run().catch(console.error);
```
### stream.Readable.from(iterable, [options])
+<!-- YAML
+added: v12.3.0
+-->
* `iterable` {Iterable} Object implementing the `Symbol.asyncIterator` or
`Symbol.iterator` iterable protocol.