summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2018-09-24 12:23:35 +0200
committerAnna Henningsen <anna@addaleax.net>2018-09-24 18:42:00 +0200
commita5b92a7bb4f1b85f0901a2872da93bb4449aa42e (patch)
tree039413b6116fcd9dc998d8d93b320a31ea647afd
parentc600a3ce1c7761761a34841730e133db02fadb4d (diff)
downloadandroid-node-v8-a5b92a7bb4f1b85f0901a2872da93bb4449aa42e.tar.gz
android-node-v8-a5b92a7bb4f1b85f0901a2872da93bb4449aa42e.tar.bz2
android-node-v8-a5b92a7bb4f1b85f0901a2872da93bb4449aa42e.zip
doc: remove outdated notes on stdio in workers
Workers support `stdio` streams since the initial PR landed. These lines are editing leftovers from before that and should be removed. PR-URL: https://github.com/nodejs/node/pull/23054 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
-rw-r--r--doc/api/process.md6
1 files changed, 0 insertions, 6 deletions
diff --git a/doc/api/process.md b/doc/api/process.md
index a2e052e477..714a9bddc5 100644
--- a/doc/api/process.md
+++ b/doc/api/process.md
@@ -1797,8 +1797,6 @@ a [Writable][] stream.
`process.stderr` differs from other Node.js streams in important ways, see
[note on process I/O][] for more information.
-This feature is not available in [`Worker`][] threads.
-
## process.stdin
* {Stream}
@@ -1831,8 +1829,6 @@ In "old" streams mode the `stdin` stream is paused by default, so one
must call `process.stdin.resume()` to read from it. Note also that calling
`process.stdin.resume()` itself would switch stream to "old" mode.
-This feature is not available in [`Worker`][] threads.
-
## process.stdout
* {Stream}
@@ -1851,8 +1847,6 @@ process.stdin.pipe(process.stdout);
`process.stdout` differs from other Node.js streams in important ways, see
[note on process I/O][] for more information.
-This feature is not available in [`Worker`][] threads.
-
### A note on process I/O
`process.stdout` and `process.stderr` differ from other Node.js streams in