index.js 91 B

123456789
  1. 'use strict'
  2. module.exports = bail
  3. function bail(err) {
  4. if (err) {
  5. throw err
  6. }
  7. }