exuent
call a callback when all passed streams have ended or any constituent
stream has errored.
var exuent = require('exuent')
exuent(stream1, stream2, streamN, function(err) {
})
exuent([stream1, streamN], function(err) {
})
API
exuent(streams:Array, ready:Function(err:Error | null))
exuent([stream:ReadableStream,] ready:Function(err:Error | null))
ready will be called on nextTick if no streams are provided.
Does not trigger flowing mode or reads. Streams must be piped
separately from this function.
License
MIT