From: Alex Lam S.L Date: Sat, 27 Feb 2021 13:06:23 +0000 (+0000) Subject: improve `export` compatibility mode (#4704) X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=7924a3ae8b7bb69c246215618768eda04987b91d;p=UglifyJS.git improve `export` compatibility mode (#4704) --- diff --git a/test/sandbox.js b/test/sandbox.js index b369ba81..adee26cb 100644 --- a/test/sandbox.js +++ b/test/sandbox.js @@ -53,7 +53,7 @@ exports.strip_exports = function(code) { var count = 0; return code.replace(/\bexport(?:\s*\{[^}]*}\s*?(?:$|\n|;)|\s+default\b(?:\s*(\(|\{|class\s*\{|class\s+(?=extends\b)|(?:async\s+)?function\s*(?:\*\s*)?\())?|\b)/g, function(match, header) { if (!header) return ""; - if (header.length == 1) return "!!" + header; + if (header.length == 1) return "0, " + header; return header.slice(0, -1) + " _" + ++count + header.slice(-1); }); };