8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9af1e4b commit a4cc0fbCopy full SHA for a4cc0fb
lib/_stream_transform.js
@@ -180,7 +180,7 @@ Transform.prototype._write = function(chunk, encoding, cb) {
180
Transform.prototype._read = function(n) {
181
var ts = this._transformState;
182
183
- if (ts.writechunk !== null && ts.writecb && !ts.transforming) {
+ if (ts.writechunk !== null && !ts.transforming) {
184
ts.transforming = true;
185
this._transform(ts.writechunk, ts.writeencoding, ts.afterTransform);
186
} else {