You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If not, when trying to decompress, this case /"("/ will corrupt the process. Resulted with error Uncaught SyntaxError: Invalid regular expression: /"("/: Unterminated group
The text was updated successfully, but these errors were encountered:
Line 239
str = str.replace(new RegExp('"' + sKey + '"', 'g'), '"' + oKeys[sKey] + '"');
I think you might forget to escape the regEx characters here it should be:
str = str.replace(new RegExp(escapeRegExp('"' + sKey + '"'), 'g'), '"' + oKeys[sKey] + '"');
If not, when trying to decompress, this case
/"("/
will corrupt the process. Resulted with errorUncaught SyntaxError: Invalid regular expression: /"("/: Unterminated group
The text was updated successfully, but these errors were encountered: