validator
Advanced tools
Comparing version 1.2.0 to 1.2.1
@@ -43,12 +43,2 @@ //This module is adapted from the CodeIgniter framework | ||
//Recursively clean objects and arrays | ||
if (typeof str === 'object') { | ||
for (var i in str) { | ||
str[i] = exports.clean(str[i]); | ||
} | ||
//We emulate the PHP behavior in CodeIgniter. | ||
str.toString = function() { return 'Array'; } | ||
return str; | ||
} | ||
//Remove invisible characters | ||
@@ -55,0 +45,0 @@ str = remove_invisible_characters(str); |
{ "name" : "validator", | ||
"description" : "Data validation, filtering and sanitization for node.js", | ||
"version" : "1.2.0", | ||
"version" : "1.2.1", | ||
"homepage" : "http://github.com/chriso/node-validator", | ||
@@ -5,0 +5,0 @@ "keywords" : ["validator", "validation", "assert", "params", "sanitization", "xss", "entities", "sanitize", "sanitisation", "input"], |
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
123478
2609