explorer/server/exceptionHandler.js

5 lines
143 B
JavaScript
Raw Normal View History

const exceptionHandler = (fn) => (req, res, next) => {
Promise.resolve(fn(req, res, next)).catch(next)
}
module.exports = exceptionHandler