resanitize
Advanced tools
Comparing version 0.1.9 to 0.1.10
{ "name" : "resanitize" | ||
, "author" : "Dan MacTough <danmactough@gmail.com>" | ||
, "description" : "Regular expression-based HTML sanitizer and ad remover, geared toward RSS feed descriptions" | ||
, "version" : "0.1.9" | ||
, "version" : "0.1.10" | ||
, "keywords" : ["sanitize", "html", "regexp", "security"] | ||
@@ -6,0 +6,0 @@ , "homepage" : "http://github.com/danmactough/node-resanitize" |
@@ -53,3 +53,3 @@ /*! | ||
return str.replace(/\u00A0/g, ' ') // Unicode non-breaking space | ||
.replace(/\u2028\u2029/g, '') // UCS newline characters | ||
.replace(/[\u2028\u2029]/g, '') // UCS newline characters | ||
.replace(/\0/g, ''); | ||
@@ -56,0 +56,0 @@ } |
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
13823