1

YUI Compressor has an option to obfuscate local symbols (it's on by default, and you can turn it off with --nomunge. My question is: how safe is this? What are the situations (if any) where it can break code?

4

1 回答 1

1

从你的链接

描述

YUI Compressor 是一个 JavaScript 压缩器,除了删除注释和空格外,它还使用尽可能小的变量名来混淆局部变量。这种混淆是安全的,即使在使用诸如 'eval' 或 'with' 之类的构造时(尽管在这些情况下压缩不是最佳的)与 jsmin 相比,平均节省大约 20%。

于 2011-08-10T16:23:31.717 回答