File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1680,7 +1680,7 @@ then this will be `null`.
1680
1680
` subprocess.stderr ` is an alias for ` subprocess.stdio[2] ` . Both properties will
1681
1681
refer to the same value.
1682
1682
1683
- The ` subprocess.stderr ` property can be ` null ` if the child process could
1683
+ The ` subprocess.stderr ` property can be ` null ` or ` undefined ` if the child process could
1684
1684
not be successfully spawned.
1685
1685
1686
1686
### ` subprocess.stdin `
@@ -1702,7 +1702,7 @@ then this will be `null`.
1702
1702
` subprocess.stdin ` is an alias for ` subprocess.stdio[0] ` . Both properties will
1703
1703
refer to the same value.
1704
1704
1705
- The ` subprocess.stdin ` property can be ` undefined ` if the child process could
1705
+ The ` subprocess.stdin ` property can be ` null ` or ` undefined ` if the child process could
1706
1706
not be successfully spawned.
1707
1707
1708
1708
### ` subprocess.stdio `
@@ -1775,7 +1775,7 @@ subprocess.stdout.on('data', (data) => {
1775
1775
});
1776
1776
```
1777
1777
1778
- The ` subprocess.stdout ` property can be ` null ` if the child process could
1778
+ The ` subprocess.stdout ` property can be ` null ` or ` undefined ` if the child process could
1779
1779
not be successfully spawned.
1780
1780
1781
1781
### ` subprocess.unref() `
You can’t perform that action at this time.
0 commit comments