asyncWrapper.js 166 B

1234567
  1. function asyncWrapper(foo) {
  2. return function (req, res, next) {
  3. return Promise.resolve(foo(req, res, next)).catch(next);
  4. };
  5. }
  6. module.exports = asyncWrapper;