(options)
| 24140 | util.inherits(PassThrough, Transform); |
| 24141 | |
| 24142 | function PassThrough(options) { |
| 24143 | if (!(this instanceof PassThrough)) return new PassThrough(options); |
| 24144 | |
| 24145 | Transform.call(this, options); |
| 24146 | } |
| 24147 | |
| 24148 | PassThrough.prototype._transform = function (chunk, encoding, cb) { |
| 24149 | cb(null, chunk); |
nothing calls this directly
no outgoing calls
no test coverage detected