Skip to content

wooorm/bail

Repository files navigation

bail

Build Coverage Downloads Size

⚠️ Throw a given error.

Install

This package is ESM only: Node 12+ is needed to use it and it must be imported instead of required.

npm:

npm install bail

Use

import {bail} from 'bail'

bail()

bail(new Error('failure'))
// Error: failure
//     at repl:1:6
//     at REPLServer.defaultEval (repl.js:154:27)
//     …

API

This package exports the following identifiers: bail. There is no default export.

bail([err])

Throw a given error.

Parameters
  • err (Error?) — Optional error.
Throws
  • Error — Given error, if any.

Related

License

MIT © Titus Wormer