1
0
mirror of https://github.com/Foltik/Shimapan synced 2025-03-10 14:13:54 -04:00
shimapan/app/util/wrap.js

3 lines
158 B
JavaScript

// Wraps an async middleware function to catch promise rejection
exports.wrap = fn =>
(req, res, next) => Promise.resolve(fn(req, res, next)).catch(next);