Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « bail « node_modules « eslint-plugin-markdown « node_modules « tools - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ef5e8807adf1930009eb6882049e50b440da8091 (plain)
1
2
3
4
5
6
7
8
9
'use strict'

module.exports = bail

function bail(err) {
  if (err) {
    throw err
  }
}