1.0.0 • Published 5 years ago

end-of-stream-promise v1.0.0

Weekly downloads
196
License
MIT
Repository
github
Last release
5 years ago

end-of-stream-promise

Await the completion or erroring of a stream

npm i -s end-of-stream-promise
const 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.