mirror of
https://github.com/kevin-DL/complete-node-bootcamp.git
synced 2026-01-12 03:15:12 +00:00
6 lines
100 B
JavaScript
6 lines
100 B
JavaScript
module.exports = fn => {
|
|
return (req, res, next) => {
|
|
fn(req, res, next).catch(next);
|
|
};
|
|
};
|