UNPKG

express-server-app

Version:

A minimal opinionated set of tools to create Web and REST servers

5 lines (3 loc) 195 B
// See: http://expressjs.com/en/advanced/best-practice-performance.html#use-promises const wrapAsync = (fn) => (...args) => fn(...args).catch(args[args.length - 1]); module.exports = wrapAsync;