UNPKG
@kapvm/create-express-app
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A CLI tool to scaffold an Express.js boilerplate project
@kapvm/create-express-app
/
template
/
utils
/
catchAsync.js
6 lines
(5 loc)
•
102 B
JavaScript
View Raw
1
2
3
4
5
6
module
.
exports
=
(
fn
) =>
{
return
(
req, res, next
) =>
{
fn
(req, res, next).
catch
(next); }; };