From 241c229925e76840b6999794cf7e7d44cd9f08f7 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Mon, 24 Sep 2018 12:23:35 +0200 Subject: [PATCH] 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. --- doc/api/process.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/doc/api/process.md b/doc/api/process.md index a2e052e4779d97..714a9bddc54fc1 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