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