ccc-tnt-psd2ui/npm-packages/mac-v2.4.x/simple-concat
2023-07-24 11:13:08 +08:00
..
test 支持 mac 2023-07-24 11:13:08 +08:00
.travis.yml 支持 mac 2023-07-24 11:13:08 +08:00
index.js 支持 mac 2023-07-24 11:13:08 +08:00
LICENSE 支持 mac 2023-07-24 11:13:08 +08:00
package.json 支持 mac 2023-07-24 11:13:08 +08:00
README.md 支持 mac 2023-07-24 11:13:08 +08:00

simple-concat travis npm downloads javascript style guide

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.