Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "multifetch", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"repository": "git@github.com:e-conomic/multifetch.git", | ||
@@ -8,3 +8,3 @@ "description": "Express middleware for performing internal batch requests", | ||
"scripts": { | ||
"test": "node ./test.js" | ||
"test": "mocha" | ||
}, | ||
@@ -11,0 +11,0 @@ "dependencies": { |
@@ -34,3 +34,3 @@ var url = require('url'); | ||
return Object.keys(query).reduce(function(acc, key) { | ||
if(key !== path && ignore.indexOf(key) === -1) { | ||
if(query[key] !== path && ignore.indexOf(key) === -1) { | ||
acc[key] = query[key]; | ||
@@ -37,0 +37,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
14833