'Unescape string' operation now works with capitalised hex

This commit is contained in:
n1474335 2018-01-04 17:48:01 +00:00
parent 1bff490fa4
commit 566adbcda5
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ const Utils = {
* Utils.parseEscapedChars("\\n");
*/
parseEscapedChars: function(str) {
return str.replace(/(\\)?\\([nrtbf]|x[\da-f]{2})/g, function(m, a, b) {
return str.replace(/(\\)?\\([nrtbf]|x[\da-fA-F]{2})/g, function(m, a, b) {
if (a === "\\") return "\\"+b;
switch (b[0]) {
case "n":