世祺 0423d5801c Initial commit (by Create-Cloudflare CLI) | 1 年間 前 | |
---|---|---|
.. | ||
test | 1 年間 前 | |
.travis.yml | 1 年間 前 | |
LICENSE | 1 年間 前 | |
README.md | 1 年間 前 | |
index.js | 1 年間 前 | |
package.json | 1 年間 前 |
concat-stream
. Less than 15 lines!npm install simple-concat
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)
MIT. Copyright (c) Feross Aboukhadijeh.