fleet-docs/node_modules/bail
divya-mohan0209 9de94a264c Initial commit 2022-09-22 09:54:31 +05:30
..
index.js Initial commit 2022-09-22 09:54:31 +05:30
license Initial commit 2022-09-22 09:54:31 +05:30
package.json Initial commit 2022-09-22 09:54:31 +05:30
readme.md Initial commit 2022-09-22 09:54:31 +05:30

readme.md

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.

License

MIT © Titus Wormer