We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 128c9f6 commit d805d5aCopy full SHA for d805d5a
doc/api/stream.md
@@ -882,8 +882,10 @@ pass.unpipe(writable);
882
// readableFlowing is now false.
883
884
pass.on('data', (chunk) => { console.log(chunk.toString()); });
885
+// readableFlowing is still false.
886
pass.write('ok'); // Will not emit 'data'.
887
pass.resume(); // Must be called to make stream emit 'data'.
888
+// readableFlowing is now true.
889
```
890
891
While `readable.readableFlowing` is `false`, data may be accumulating
0 commit comments