dump-stream

0.0.9 • Public • Published

dump-stream

Takes a stream and dumps it to a string, or an array if you really need that, I guess.

USAGE

DumpStream = require('dump-stream');
// use new DumpStream({outputType: 'Array'}) to dump to array
var stream = new DumpStream();
getReadableStreamSomehow().pipe(stream).on('finish', function(){
  console.log(stream.dump());
});

Package Sidebar

Install

npm i dump-stream

Weekly Downloads

0

Version

0.0.9

License

GPL-3.0

Last publish

Collaborators

  • cosmicexplorer