Browse Source

stream: remove unused `ranOut` from ReadableState

flag `ranOut` became unused since 0f8de5e1f9,
but 0f8de5e1f9 did not remove it.

PR-URL: https://github.com/nodejs/node/pull/11139
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
v6
Wang Xinyong 8 years ago
committed by Matteo Collina
parent
commit
1004b9b4ad
  1. 4
      lib/_stream_readable.js

4
lib/_stream_readable.js

@ -81,10 +81,6 @@ function ReadableState(options, stream) {
// Everything else in the universe uses 'utf8', though.
this.defaultEncoding = options.defaultEncoding || 'utf8';
// when piping, we only care about 'readable' events that happen
// after read()ing all the bytes and not getting any pushback.
this.ranOut = false;
// the number of writers that are awaiting a drain event in .pipe()s
this.awaitDrain = 0;

Loading…
Cancel
Save