From 5b1ac3de186c6349dcbac1d622c8e1a8f863e697 Mon Sep 17 00:00:00 2001 From: n1474335 Date: Fri, 16 Feb 2018 13:33:33 +0000 Subject: [PATCH] Reduced byte length in 'Unescape Unicode Characters' --- src/core/operations/Unicode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/operations/Unicode.js b/src/core/operations/Unicode.js index 34bffd4d..16e9357f 100755 --- a/src/core/operations/Unicode.js +++ b/src/core/operations/Unicode.js @@ -27,7 +27,7 @@ const Unicode = { */ runUnescape: function(input, args) { let prefix = Unicode._prefixToRegex[args[0]], - regex = new RegExp(prefix+"([a-f\\d]{4,6})", "ig"), + regex = new RegExp(prefix+"([a-f\\d]{4})", "ig"), output = "", m, i = 0;