Codeai / backend /utils /asyncHandler.js
zhlajiex's picture
initial
1dc8372
raw
history blame contribute delete
130 Bytes
const asyncHandler = fn => (req, res, next) =>
Promise.resolve(fn(req, res, next)).catch(next);
module.exports = asyncHandler;