doc: clarify subprocess.stdout/in/err property

PR-URL: https://github.com/nodejs/node/pull/43910
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Mestery <mestery@protonmail.com>
This commit is contained in:
Kohei Ueno
2022-07-25 01:43:05 +09:00
committed by GitHub
parent 223418adf5
commit a324ea03d9

View File

@@ -1670,7 +1670,7 @@ in which the child process is launched.
added: v0.1.90
-->
* {stream.Readable}
* {stream.Readable|null|undefined}
A `Readable Stream` that represents the child process's `stderr`.
@@ -1680,8 +1680,8 @@ then this will be `null`.
`subprocess.stderr` is an alias for `subprocess.stdio[2]`. Both properties will
refer to the same value.
The `subprocess.stderr` property can be `null` if the child process could
not be successfully spawned.
The `subprocess.stderr` property can be `null` or `undefined`
if the child process could not be successfully spawned.
### `subprocess.stdin`
@@ -1689,7 +1689,7 @@ not be successfully spawned.
added: v0.1.90
-->
* {stream.Writable}
* {stream.Writable|null|undefined}
A `Writable Stream` that represents the child process's `stdin`.
@@ -1702,8 +1702,8 @@ then this will be `null`.
`subprocess.stdin` is an alias for `subprocess.stdio[0]`. Both properties will
refer to the same value.
The `subprocess.stdin` property can be `undefined` if the child process could
not be successfully spawned.
The `subprocess.stdin` property can be `null` or `undefined`
if the child process could not be successfully spawned.
### `subprocess.stdio`
@@ -1755,7 +1755,7 @@ not be successfully spawned.
added: v0.1.90
-->
* {stream.Readable}
* {stream.Readable|null|undefined}
A `Readable Stream` that represents the child process's `stdout`.
@@ -1775,8 +1775,8 @@ subprocess.stdout.on('data', (data) => {
});
```
The `subprocess.stdout` property can be `null` if the child process could
not be successfully spawned.
The `subprocess.stdout` property can be `null` or `undefined`
if the child process could not be successfully spawned.
### `subprocess.unref()`