UNPKG

extendable-http-errors

Version:

Extendable http error for node server using es2015, covers most HTTP default errors and allow extending them for custom errors.

5 lines (4 loc) 153 B
const prettifyErrorFunction = require('./prettify-error.function'); module.exports = (err, req, res, next) => { next(prettifyErrorFunction(err)); };