Skip to content

Latest commit

 

History

History
84 lines (49 loc) · 1.38 KB

File metadata and controls

84 lines (49 loc) · 1.38 KB

bail

Build Coverage Downloads Size

⚠️ Throw a given error.

Install

npm:

npm install bail

Use

var bail = require('bail')

bail()

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

API

bail([err])

Throw a given error.

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

Related

License

MIT © Titus Wormer