expressify.js 188 B

12345678910
  1. /**
  2. * Turn an async function into an Express middleware
  3. */
  4. function expressify(fn) {
  5. return (req, res, next) => {
  6. fn(req, res, next).catch(next)
  7. }
  8. }
  9. module.exports = expressify