Package Exports
- readable-error
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (readable-error) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
readable-error
A readable stream which emits an error. The error given to the constructor will be emitted after the first read attempt.
Usage
Just give the error to the constructor:
const ReadableError = require('readable-error')
const stream = new ReadableError(new Error('test'))
stream.on('error', (err) => {
console.log(err.message)
})
stream.resume()