JSPM

readable-error

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 11047
  • Score
    100M100P100Q119928F
  • License MIT

Readable stream which emits an error

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()