UNPKG

@ministryofjustice/probation-search-frontend

Version:

A shared UI component to search for probation cases from within your Express/Nunjucks application

9 lines 268 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = wrapAsync; function wrapAsync(fn) { return (req, res, next) => { Promise.resolve(fn(req, res, next)).catch(next); }; } //# sourceMappingURL=middleware.js.map