latex-ub/services/history-v1/api/controllers/expressify.js
2025-05-05 12:24:05 +00:00

10 lines
188 B
JavaScript

/**
* Turn an async function into an Express middleware
*/
function expressify(fn) {
return (req, res, next) => {
fn(req, res, next).catch(next)
}
}
module.exports = expressify