end-of-stream-promise
v1.0.0
Published
Await the completion or erroring of a stream
Maintainers
Readme
end-of-stream-promise
Await the completion or erroring of a stream
npm i -s end-of-stream-promiseconst eosp = require('end-of-stream-promise')
const stream = getSomeStream()
try {
await eosp(stream)
} catch(e) {
console.log('Stream had an error!')
}Check out the end-of-stream docs for more options.
