UNPKG

@node-scarlet/http

Version:

Build APIs Instantly 🏋️‍♂️

7 lines (6 loc) 150 B
/** * Wrapper handlers with error catching */ export const protect = async (fn) => { return async (req, meta) => fn(req, meta).catch(e => 404); }