Spaces:
Paused
Paused
File size: 210 Bytes
eeb3436 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | function asyncHandler(handler) {
return async (req, res, next) => {
try {
await handler(req, res, next);
} catch (error) {
next(error);
}
};
}
module.exports = {
asyncHandler,
};
|