gpt4 book ai didi

node.js - 仅删除死代码的 UglifyJS 选项

转载 作者:行者123 更新时间:2023-12-04 12:53:08 25 4
gpt4 key购买 nike

有没有办法在 Node 脚本中调用 UglifyJS2 API(即通过调用 require('uglify-js').minify )对一串代码,以便它删除死/无法访问的代码但不应用任何压缩

例如:

var foo = 'bar';
if (false) {
foo = 'yo';
}
alert('Foo value found');
alert(foo);

会成为
var foo = 'bar';
alert('Foo value found');
alert(foo);

最佳答案

答案很晚,但是 compress: {defaults: false, dead_code: true, unused: true}将在 Terser 中工作。 See docs .

关于node.js - 仅删除死代码的 UglifyJS 选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34361272/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com