express-logging
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -73,3 +73,5 @@ /** | ||
function isUrlBlackedListed(url) { | ||
return blacklist.some(url.startsWith.bind(url)); | ||
return blacklist.some(function(blackListUrl) { | ||
return url.indexOf(blackListUrl) === 0; | ||
}); | ||
} | ||
@@ -76,0 +78,0 @@ |
{ | ||
"name": "express-logging", | ||
"description": "Express middleware to log each request and response", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"license": "Apache-2.0", | ||
@@ -6,0 +6,0 @@ "author": { |
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
31916
476