UNPKG

herror

Version:

Simple HTTP error constructor, as if this problem is still open

11 lines (7 loc) 183 B
'use strict'; var http = require('http'); module.exports = function (code) { var error = new Error(code + ' ' + http.STATUS_CODES[code]); error.code = code; return error; };