A suite to track Project Diva score statistics and ratings / D4DJ event data.
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.
 
 
 
 
 
 
projectdivar/server/node_modules/simple-concat
sigonasr2 f42b034344 Implement D4DJ endpoints and database 4 years ago
..
test Implement D4DJ endpoints and database 4 years ago
.travis.yml Implement D4DJ endpoints and database 4 years ago
LICENSE Implement D4DJ endpoints and database 4 years ago
README.md Implement D4DJ endpoints and database 4 years ago
index.js Implement D4DJ endpoints and database 4 years ago
package.json Implement D4DJ endpoints and database 4 years ago

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.