mongo-express
Advanced tools
Comparing version 0.30.36 to 0.30.37
@@ -129,4 +129,4 @@ 'use strict'; | ||
// Return basic .toString() since we've tried all other cases | ||
return input.toString(); | ||
// Return basic .toString() and strip <HTML> tags (<&>) since we've tried all other cases | ||
return input.toString().replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, '''); | ||
}; | ||
@@ -133,0 +133,0 @@ |
@@ -20,3 +20,3 @@ { | ||
], | ||
"version": "0.30.36", | ||
"version": "0.30.37", | ||
"bin": { | ||
@@ -23,0 +23,0 @@ "mongo-express": "./app.js" |
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
2392081