mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 13:07:37 +03:00
18 lines
816 B
JavaScript
18 lines
816 B
JavaScript
///////////////////////////////////////////////////////////////
|
|
// FUNCTION
|
|
///////////////////////////////////////////////////////////////
|
|
/**
|
|
*
|
|
* @param {function} asyncFunction an async function whose errors need to be caught
|
|
* @returns a function which executes all the code inside the passed asyncFunction, and passes down the errors to the express middleware, if any.
|
|
*
|
|
* @description an alternative to try catch blocks to handle errors in async functions
|
|
*/
|
|
const catchAsyncErrors = asyncFunction => (req, res, next) => {
|
|
asyncFunction(req, res, next).catch(err => next(err));
|
|
};
|
|
|
|
///////////////////////////////////////////////////////////////
|
|
// EXPORTS
|
|
///////////////////////////////////////////////////////////////
|
|
export default catchAsyncErrors;
|