dat-middleware
Advanced tools
Comparing version 1.5.12 to 1.5.13
@@ -0,6 +1,8 @@ | ||
var replaceKeypaths = require('./utils/replaceKeypaths'); | ||
module.exports = function () { | ||
var args = Array.prototype.slice.call(arguments); | ||
return function (req, res, next) { | ||
next.apply(null, args); | ||
var nextArgs = replaceKeypaths(req, args); | ||
next.apply(null, nextArgs); | ||
}; | ||
}; |
{ | ||
"name": "dat-middleware", | ||
"version": "1.5.12", | ||
"version": "1.5.13", | ||
"description": "common request, response, body, query, and param validation, transformation, and flow control middleware", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
67885
32
1871