You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zyp
5e2674a523
|
4 weeks ago | |
---|---|---|
.. | ||
test | 4 weeks ago | |
.travis.yml | 4 weeks ago | |
LICENSE | 4 weeks ago | |
README.md | 4 weeks ago | |
index.js | 4 weeks ago | |
package.json | 4 weeks ago |
README.md
simple-concat
Super-minimalist version of concat-stream
. Less than 15 lines!
install
npm install simple-concat
usage
This example is longer than the implementation.
var s = new stream.PassThrough()
concat(s, function (err, buf) {
if (err) throw err
console.error(buf)
})
s.write('abc')
setTimeout(function () {
s.write('123')
}, 10)
setTimeout(function () {
s.write('456')
}, 20)
setTimeout(function () {
s.end('789')
}, 30)
license
MIT. Copyright (c) Feross Aboukhadijeh.