npm.io
0.0.1 • Published 11 years ago

funil

Licence
ISC
Version
0.0.1
Deps
0
Vulns
0
Weekly
0
Stars
1

funil

a stream that aggegates other streams

var Funil = require('./funil');

var f = new Funil();
f.add(streamA);
f.add(streamB);
f.add(streamC);
f.add(streamD);

f.on('data', function(d) { /* d can be from either one of the streams */ });