gpt4 book ai didi

javascript - 如何以简单模式告诉 Google Closure Compiler 特定的函数名称可以被压缩?

转载 作者:行者123 更新时间:2023-12-02 16:33:52 25 4
gpt4 key购买 nike

Google Closure Compiler 使用 ADVANCED_OPTIMIZATIONS 选项来完成此操作,但我无法使用它,因为我使用 jQuery。所以,我必须使用 SIMPLE_OPTIMIZATIONS,但我想压缩一些函数的名称。

function myLongFunctionName(response) {
// do something here
}

myLongFunctionName(text);

我可以将 myLongFunctionName 更改为 a (或任何闭包编译器选择的内容)。但我没有看到任何annotation ,这可以帮助我。我怎样才能做到呢?

最佳答案

如果函数是本地函数,则 Google Closure 编译器会重命名它。我已将代码移至

(function(){

function myLongFunctionName(response) {
// do something here
}

myLongFunctionName(text);

})()

结果,它也被压缩了。

关于javascript - 如何以简单模式告诉 Google Closure Compiler 特定的函数名称可以被压缩?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28094474/

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