UNPKG

get-express-starter

Version:

Get production ready express boilerplate with a single command

6 lines (4 loc) 147 B
const catchAsync = (fn) => (req, res, next) => { Promise.resolve(fn(req, res, next)).catch((err) => next(err)); }; module.exports = catchAsync;