csv-readable-stream
v0.0.1
Published
csv readable stream
Downloads
4
Readme
csv-readable-stream
npm install csv-readable-stream
var stream = require('csv-readable-stream')()
stream.write(['hello', 'world'])
// call `done` to free streaming process
stream.done(function () {
// optional callback
// same as stream.on('end', ...)
})
stream.pipe(process.stdout)
//=> "hello","world"
License
MIT