0.0.2 • Published 12 years ago

accumulate v0.0.2

Weekly downloads
12
License
-
Repository
github
Last release
12 years ago

Accumulate

npm install accumulate

Accumulates data, e.g. from a readable stream.

No more of this

var data = ''
stream.on('data', function(d) {
    data += d
})
stream.on('end', function() {
    /* something with `data` */
})

More of this

var accumulate = require('accumulate')()
stream.on('data', accumulate)
stream.on('end', function() {
    var data = accumulate().data
})
0.0.2

12 years ago

0.0.1

12 years ago