Skip to content

Instantly share code, notes, and snippets.

@Cyberuben
Created March 23, 2018 13:57
Show Gist options
  • Save Cyberuben/2ec0cfe43e3132c1c45f04736d883fb2 to your computer and use it in GitHub Desktop.
Save Cyberuben/2ec0cfe43e3132c1c45f04736d883fb2 to your computer and use it in GitHub Desktop.
// middleware/wrap.js
module.exports = (fn) => {
return (req, res, next) => {
Promise.resolve(fn(req, res, next)).catch(next);
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment