0

使用 Terser 我无法得到想要的结果。

我正在尝试缩小下面的测试代码,并且无论我尝试什么,函数名称都不会被缩小。变量名称也保持不变,只是在具有参数的局部函数中,它们会被更改。我已经着手topleveltrue尝试了我能想到的每一个选项。中的死代码neverBeCalled也不会消失。使用 Terser v4.3.4 并且使用另一个缩小器没有问题,如果可以的话。

我的配置:

var options = {
    warnings: "verbose",
    keep_fnames: false,
    mangle: {
     toplevel: true,
   },
    compress: {
    passes: 20,
    dead_code: true,
    sequences: false,
    conditionals: false,
    drop_console: true,
},
    output: {
        ecma: 6,
        semicolons: false
    }

};

测试源文件:

init = function(){

test="testing";

bla = "blabla"

shameVar=903
}

update = function(){


test+="test"
test+="123"
x=10;
bla=bla+"x"
tester = myFuncWithLongName(23,24);
shameVar=shameVar-1;
}

myfuncWithLongName = function(eat,sleep){
resting=sleep+shameVar;
some = eat+resting;

return some;
}

neverBeCalled = function(){

thisdoesnot=0;
return thisdoesnot;

}

结果

init=function(){test="testing"
bla="blabla"
shameVar=903}
update=function(){test+="test"
test+="123"
x=10
bla+="x"
tester=myFuncWithLongName(23,24)
shameVar-=1}
myfuncWithLongName=function(t,e){resting=e+shameVar
some=t+resting
return some}
neverBeCalled=function(){thisdoesnot=0
return thisdoesnot}
4

1 回答 1

0

这是不可能的,因为不添加var变量是全局的,并且 Terser 不会破坏它们。

于 2019-10-15T14:01:14.010 回答