UNPKG

@dannybster/coco-the-bear-http-errors

Version:

A collection of error objects that represent http response objects for CoCo The Bear.

12 lines (10 loc) 219 B
function errorHandler(err, req, res, next) { if (!err.httpResponse) { next(err); } else { res .status(err.httpResponse.status) .json(err.httpResponse.body); } } module.exports = errorHandler;