Sha256: 171483b99bd52e4279e4d5a9cfa5c3806b5d0caf40f25d2200504d72ed66998a
Contents?: true
Size: 428 Bytes
Versions: 8
Compression:
Stored size: 428 Bytes
Contents
/* */ module.exports = PassThrough; var Transform = require('./_stream_transform'); var util = require('core-util-is'); util.inherits = require('inherits'); util.inherits(PassThrough, Transform); function PassThrough(options) { if (!(this instanceof PassThrough)) return new PassThrough(options); Transform.call(this, options); } PassThrough.prototype._transform = function(chunk, encoding, cb) { cb(null, chunk); };
Version data entries
8 entries across 8 versions & 1 rubygems