7 lines
166 B
JavaScript
7 lines
166 B
JavaScript
function asyncWrapper(foo) {
|
|
return function (req, res, next) {
|
|
return Promise.resolve(foo(req, res, next)).catch(next);
|
|
};
|
|
}
|
|
|
|
module.exports = asyncWrapper;
|