Commit 69c0af3d authored by Romain Courteaud's avatar Romain Courteaud

Do not freeze RegExp.

For some reason, recent Firefox prevent using frozen regexp.
parent 65066a88
This diff is collapsed.
......@@ -92,7 +92,7 @@ var objectHelper = (function () {
if (object.hasOwnProperty(propertyName)) {
property = object[propertyName];
// be aware, arrays are 'object', too
if (typeof property === "object") {
if ((typeof property === "object") && !(property instanceof RegExp)) {
deepFreeze(property);
}
}
......
......@@ -66,7 +66,7 @@ var objectHelper = (function () {
if (object.hasOwnProperty(propertyName)) {
property = object[propertyName];
// be aware, arrays are 'object', too
if (typeof property === "object") {
if ((typeof property === "object") && !(property instanceof RegExp)) {
deepFreeze(property);
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment