Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
zhlajiex
/
Codeai
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Codeai
/
backend
/
utils
/
asyncHandler.js
zhlajiex
initial
1dc8372
11 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
130 Bytes
const
asyncHandler
= fn =>
(
req, res, next
) =>
Promise
.
resolve
(
fn
(req, res, next)).
catch
(next);
module
.
exports
= asyncHandler;