mocha 3.5.2 → 3.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/lib/utils.js +1 -1
- package/mocha.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/lib/utils.js
CHANGED
package/mocha.js
CHANGED
|
@@ -6031,7 +6031,7 @@ exports.inherits = require('util').inherits;
|
|
|
6031
6031
|
* @return {string}
|
|
6032
6032
|
*/
|
|
6033
6033
|
exports.escape = function (html) {
|
|
6034
|
-
return he.encode(String(html), { useNamedReferences:
|
|
6034
|
+
return he.encode(String(html), { useNamedReferences: false });
|
|
6035
6035
|
};
|
|
6036
6036
|
|
|
6037
6037
|
/**
|