UNPKG

require-node-example

Version:

An example for how to use npm package: require-node & require-node-loader

12 lines (9 loc) 254 B
'use strict' function YError (msg) { this.name = 'YError' this.message = msg || 'yargs error' Error.captureStackTrace(this, YError) } YError.prototype = Object.create(Error.prototype) YError.prototype.constructor = YError module.exports = YError