UNPKG

strong-params

Version:

Rails-style strong parameters for javascript projects. (e.g. Express, Koa)

11 lines (8 loc) 268 B
var util = require('util') function ParameterMissingError (message) { Error.captureStackTrace(this, this.constructor) this.name = this.constructor.name this.message = message } util.inherits(ParameterMissingError, Error) module.exports = ParameterMissingError