Searched refs:CombinedStream (Results 1 – 4 of 4) sorted by relevance
6 module.exports = CombinedStream;7 function CombinedStream() { class18 util.inherits(CombinedStream, Stream);20 CombinedStream.create = function(options) {31 CombinedStream.isStreamLike = function(stream) {39 CombinedStream.prototype.append = function(stream) {40 var isStreamLike = CombinedStream.isStreamLike(stream);63 CombinedStream.prototype.pipe = function(dest, options) {69 CombinedStream.prototype._getNext = function() {86 var isStreamLike = CombinedStream.isStreamLike(stream);[all …]
23 var CombinedStream = require('combined-stream');26 var combinedStream = CombinedStream.create();38 var CombinedStream = require('combined-stream');41 var combinedStream = CombinedStream.create({pauseStreams: false});54 var CombinedStream = require('combined-stream');57 var combinedStream = CombinedStream.create();70 ### CombinedStream.create([options])
1 var CombinedStream = require('combined-stream'); variable16 util.inherits(FormData, CombinedStream);35 CombinedStream.call(this);55 var append = CombinedStream.prototype.append.bind(this);
4 var CombinedStream = require('combined-stream') variable68 var body = chunked ? new CombinedStream() : []