0.0.1 • Published 10 years ago
csv-readable-stream v0.0.1
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
0.0.1
10 years ago