Lines Matching refs:combined
1 # combined-stream
5 …combined-stream` works with streams version 1 only. There is ongoing effort to switch this library…
7 - [combined-stream2](https://www.npmjs.com/package/combined-stream2): A drop-in streams2-compatible…
14 npm install combined-stream
19 Here is a simple example that shows how you can use combined-stream to combine
23 var CombinedStream = require('combined-stream');
30 combinedStream.pipe(fs.createWriteStream('combined.txt'));
38 var CombinedStream = require('combined-stream');
45 combinedStream.pipe(fs.createWriteStream('combined.txt'));
54 var CombinedStream = require('combined-stream');
65 combinedStream.pipe(fs.createWriteStream('combined.txt'));
72 Returns a new combined stream object. Available options are:
104 Regardless of how the `stream` is appended, combined-stream always attaches an
138 combined-stream is licensed under the MIT license.