@@ -2158,6 +2158,14 @@ a [Writable][] stream.
2158
2158
` process.stderr ` differs from other Node.js streams in important ways. See
2159
2159
[ note on process I/O] [ ] for more information.
2160
2160
2161
+ ### ` process.stderr.fd `
2162
+
2163
+ * {number}
2164
+
2165
+ This property refers to the value of underlying file descriptor
2166
+ (in POSIX) or handle (an abstract resource reference in Windows) of
2167
+ ` process.stderr ` . In ` worker_thread ` s, this field does not exist.
2168
+
2161
2169
## ` process.stdin `
2162
2170
2163
2171
* {Stream}
@@ -2191,6 +2199,14 @@ In "old" streams mode the `stdin` stream is paused by default, so one
2191
2199
must call ` process.stdin.resume() ` to read from it. Note also that calling
2192
2200
` process.stdin.resume() ` itself would switch stream to "old" mode.
2193
2201
2202
+ ### ` process.stdin.fd `
2203
+
2204
+ * {number}
2205
+
2206
+ This property refers to the value of underlying file descriptor
2207
+ (in POSIX) or handle (an abstract resource reference in Windows) of
2208
+ ` process.stdin ` . In ` worker_thread ` s, this field does not exist.
2209
+
2194
2210
## ` process.stdout `
2195
2211
2196
2212
* {Stream}
@@ -2209,6 +2225,14 @@ process.stdin.pipe(process.stdout);
2209
2225
` process.stdout ` differs from other Node.js streams in important ways. See
2210
2226
[ note on process I/O] [ ] for more information.
2211
2227
2228
+ ### ` process.stdout.fd `
2229
+
2230
+ * {number}
2231
+
2232
+ This property refers to the value of underlying file descriptor
2233
+ (in POSIX) or handle (an abstract resource reference in Windows) of
2234
+ ` process.stdout ` . In ` worker_thread ` s, this field does not exist.
2235
+
2212
2236
### A note on process I/O
2213
2237
2214
2238
` process.stdout ` and ` process.stderr ` differ from other Node.js streams in
0 commit comments