(options)
| 2769 | util.inherits(PassThrough, Transform); |
| 2770 | |
| 2771 | function PassThrough(options) { |
| 2772 | if (!(this instanceof PassThrough)) |
| 2773 | return new PassThrough(options); |
| 2774 | |
| 2775 | Transform.call(this, options); |
| 2776 | } |
| 2777 | |
| 2778 | PassThrough.prototype._transform = function(chunk, encoding, cb) { |
| 2779 | cb(null, chunk); |