asyncHandler.js 102 Bytes
Newer Older
abergavenny's avatar
abergavenny committed
1
2
3
4
export default (fn) => (req, res, next) => {
  Promise.resolve(fn(req, res, next))
    .catch(next)
}