Files
CLProject/src/utils/asyncHandler.js
T
2026-04-09 19:27:10 +02:00

10 lines
198 B
JavaScript

export function asyncHandler(handler) {
return async function wrappedHandler(req, res, next) {
try {
await handler(req, res, next);
} catch (error) {
next(error);
}
};
}