Home
last modified time | relevance | path

Searched refs:pipeOpts (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/
D_stream_readable.js565 Readable.prototype.pipe = function (dest, pipeOpts) { argument
580 debug('pipe count=%d opts=%j', state.pipesCount, pipeOpts);
581 …var doEnd = (!pipeOpts || pipeOpts.end !== false) && dest !== process.stdout && dest !== process.s…
/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/
Dreadable.js581 Readable.prototype.pipe = function (dest, pipeOpts) { argument
591 debug('pipe count=%d opts=%j', state.pipes.length, pipeOpts)
592 …const doEnd = (!pipeOpts || pipeOpts.end !== false) && dest !== process.stdout && dest !== process…
/third_party/node/lib/internal/streams/
Dreadable.js677 Readable.prototype.pipe = function(dest, pipeOpts) { argument
691 debug('pipe count=%d opts=%j', state.pipes.length, pipeOpts);
693 const doEnd = (!pipeOpts || pipeOpts.end !== false) &&