From: Ville Lautanala Date: Sun, 19 Jan 2014 10:27:03 +0000 (+0200) Subject: Don't unescape byte order marks in regexps X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=1e31011874b82723c52589adfda3a451f7a9b0e7;p=UglifyJS.git Don't unescape byte order marks in regexps --- diff --git a/lib/output.js b/lib/output.js index 896defa3..fce2c1ad 100644 --- a/lib/output.js +++ b/lib/output.js @@ -1126,7 +1126,7 @@ function OutputStream(options) { str = str.split("\\\\").map(function(str){ return str.replace(/\\u[0-9a-fA-F]{4}|\\x[0-9a-fA-F]{2}/g, function(s){ var code = parseInt(s.substr(2), 16); - return code == 0x2f || code == 10 || code == 13 || code == 0x2028 || code == 0x2029 ? s : String.fromCharCode(code); + return code == 0xfeff || code == 0x2f || code == 10 || code == 13 || code == 0x2028 || code == 0x2029 ? s : String.fromCharCode(code); }); }).join("\\\\"); }