版博士V2.0程序
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
CPL 9104556504 v2.0.7 报表数据修改 1 ano atrás
..
test v2.0.7 报表数据修改 1 ano atrás
.travis.yml v2.0.7 报表数据修改 1 ano atrás
LICENSE v2.0.7 报表数据修改 1 ano atrás
README.md v2.0.7 报表数据修改 1 ano atrás
index.js v2.0.7 报表数据修改 1 ano atrás
package.json v2.0.7 报表数据修改 1 ano atrás

README.md

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.