UNPKG

confn

Version:

A simple to implement config management node js library. Setup dev, staging, production, etc. config for your node app effortlessly.

10 lines (9 loc) 258 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.raiseError = void 0; const raiseError = (message, code = 1) => { const err = new Error(message); err.code = code; throw err; }; exports.raiseError = raiseError;