UNPKG

simple-auth-cli

Version:

An implementation of authentication system supporting multiple providers ready to be used with a single command.

6 lines 176 B
const asyncHandler=(requestHandler)=>{ return (req,res,next)=>{ Promise.resolve(requestHandler(req,res,next)).catch((err)=>next(err)); } } export default asyncHandler;