Lines Matching refs:PassThrough
6061 PassThrough = _require2.PassThrough;
6077 iterable = iterable.pipe(new PassThrough());
23871 PassThrough = _require.PassThrough;
24399 stream = stream.pipe(new PassThrough());
24552 stream = new PassThrough();
24567 stream = new PassThrough({
71606 module.exports = PassThrough;
71610 require('inherits')(PassThrough, Transform);
71612 function PassThrough(options) {
71613 if (!(this instanceof PassThrough)) return new PassThrough(options);
71617 PassThrough.prototype._transform = function (chunk, encoding, cb) {
74514 exports.PassThrough = require('./lib/_stream_passthrough.js');
78907 Stream.PassThrough = require('readable-stream/passthrough.js'); // Backwards-compat with node 0.4.x
79150 module.exports = PassThrough;
79160 util.inherits(PassThrough, Transform);
79162 function PassThrough(options) {
79163 if (!(this instanceof PassThrough)) return new PassThrough(options);
79167 PassThrough.prototype._transform = function (chunk, encoding, cb) {
81282 module.exports = require('./readable').PassThrough;
81293 exports.PassThrough = require('./lib/_stream_passthrough.js');