由于逃避我的原因,uglifyjs似乎不是mangling top-level names。我做错了什么?
一个简单的testugly.js看起来像这样:
var testThing={};
testThing.something = 1;
testThing.myfunction = function(alpha,beta,c) {
var dino = 5;
if (alpha > 2) {
dino = 6
}
return dino + beta * c
}
足够简单。如果我通过uglify运行它而不试图破坏顶级变量,事情会按预期进行:
$ uglifyjs --version
uglify-js 2.4.0
$ uglifyjs testugly.js --mangle -c
var testThing={},testThing.something=1,testThing.myfunction=function(t,n,i){var e=5;return t>2&&(e=6),e+n*i};
现在,我想修改顶级变量,所以我添加了toplevel=true
。
$ uglifyjs testugly.js --mangle toplevel=true -c
var testThing={},testThing.something=1,testThing.myfunction=function(t,n,i){var e=5;return t>2&&(e=6),e+n*i};
或许我弄错了,让我们尝试旧的-mt
。
$ uglifyjs testugly.js -mt -c
var testThing={},testThing.something=1,testThing.myfunction=function(t,n,i){var e=5;return t>2&&(e=6),e+n*i};
是什么给出的? testThing
不应该是'a'还是什么?
答案 0 :(得分:1)
尝试将代码包含在函数(-e)中:
$ uglifyjs testugly.js -e -mt -c
!function(){var n={};n.something=1,n.myfunction=function(n,t,i){var o=5;return n>2&&(o=6),o+t*i}}();
(2.4.3版本)