Browse Source

stream: use nop as write() callback if omitted

This commit introduces a nop function that is used as the
Writable.prototype.write() callback when one is not provided.
This saves on function object creation.

PR-URL: https://github.com/iojs/io.js/pull/564
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
v1.8.0-commit
cjihrig 10 years ago
parent
commit
40ffed8f3f
  1. 4
      lib/_stream_writable.js

4
lib/_stream_writable.js

@ -13,6 +13,8 @@ const debug = util.debuglog('stream');
util.inherits(Writable, Stream);
function nop() {}
function WriteReq(chunk, encoding, cb) {
this.chunk = chunk;
this.encoding = encoding;
@ -189,7 +191,7 @@ Writable.prototype.write = function(chunk, encoding, cb) {
encoding = state.defaultEncoding;
if (!util.isFunction(cb))
cb = function() {};
cb = nop;
if (state.ended)
writeAfterEnd(this, state, cb);

Loading…
Cancel
Save