Licence
BSD
Version
0.0.2
Deps
0
Vulns
0
Weekly
0
Tax Collector
Collecting all of the things
Collects all of the data on a stream and emits 'ready' when stream is finished
Example
var TaxCollector = require('tax_collector');
var stream = getSomeReadableStream();
var collector = new TaxCollector();
stream.pipe(collector);
collector.on('ready', function(text) {
// Do something with text
});
