Skip to content

Commit c6935e7

Browse files
addaleaxBethGriggs
authored andcommitted
doc: fix process.stdin example
Fixes: #20503 PR-URL: #25344 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Anto Aravinth <[email protected]> Reviewed-By: Franziska Hinkelmann <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 5bd6fe7 commit c6935e7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

doc/api/process.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1863,8 +1863,9 @@ a [Readable][] stream.
18631863
process.stdin.setEncoding('utf8');
18641864

18651865
process.stdin.on('readable', () => {
1866-
const chunk = process.stdin.read();
1867-
if (chunk !== null) {
1866+
let chunk;
1867+
// Use a loop to make sure we read all available data.
1868+
while ((chunk = process.stdin.read()) !== null) {
18681869
process.stdout.write(`data: ${chunk}`);
18691870
}
18701871
});

0 commit comments

Comments
 (0)