hayat / utils /catchAsyncError.js
Mohamed Abu Basith
addded all files
97f53b4
raw
history blame contribute delete
158 Bytes
let catchAsyncError = (fn) => {
return (req, res, next) => {
fn(req, res, next).catch((err) => next(err));
};
};
module.exports = catchAsyncError;