0.0.1 • Published 10 years ago

csv-readable-stream v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

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