JSPM

error-format

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 9
  • Score
    100M100P100Q28131F
  • License MIT

Allows you to customize the toString method of passed `err`. Also adds useful properties like `line`, `filename` and `column` to the `err` object.

Package Exports

  • error-format

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 (error-format) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

error-format npmjs.com The MIT License

Allows you to customize the toString method of passed err. Also adds useful properties like line, filename and column to the err object.

code climate standard code style travis build status coverage status dependency status

Install

npm i error-format --save

Usage

For more use-cases see the tests

const errorFormat = require('error-format')

errorFormat

Adds bypassed .toString which you can customize through the fmt function.

Params

  • <err> {Error}: error object/instance
  • [fmt] {Function}: custom format function
  • returns {Error}: what comes from input (instance of error)

Example

var errorFormat = require('error-format')
var err = new TypeError('baz qux')

console.log(err.toString())
// => TypeError: baz qux

err = errorFormat(err, function fmt (headline) {
  if (this.message.indexOf('baz') !== -1) {
    headline += ' --- Line: ' + this.line
  }
  if (this.message.indexOf('qux') !== -1) {
    headline += ' --- Column: ' + this.column
  }
  return headline
})

console.log(err.toString())
// => TypeError: baz qux --- Line: 4 --- Column: 11

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
But before doing anything, please read the CONTRIBUTING.md guidelines.

Charlike Make Reagent new message to charlike freenode #charlike

tunnckoCore.tk keybase tunnckoCore tunnckoCore npm tunnckoCore twitter tunnckoCore github