UNPKG

express-autoroute-json

Version:

Express Auto Route Json is an automatic JSON 'REST' api builder for express-autoroute

10 lines (8 loc) 207 B
module.exports = function (options) { return function (req, res, next) { if (options && options.create) { req.model = new options.model(req.body); } next(); } };