Hao
Hao
if you obfuscate two files in one process,you can follow the example like this https://github.com/javascript-obfuscator/javascript-obfuscator#identifiernamescache if you obfuscate two files in different process, consider persist namecache,just like terser's nameCache https://github.com/terser/terser#api-reference...
> > 变量命名 > > 标准变量采用驼峰式命名(除了对象的属性外,主要是考虑到cgi返回的数据) > > 'ID'在变量名中全大写 > > 'URL'在变量名中全大写 > > 'Android'在变量名中大写第一个字母 > > 'iOS'在变量名中小写第一个,大写后两个字母 > > 常量全大写,用下划线连接 > > 构造函数,大写第一个字母 > > jquery对象必须以'$'开头命名 > > 在[团队规范文档](http://alloyteam.github.io/CodeGuide/#js-variable-naming)中提到的`标准变量采用驼峰式命名(除了对象的属性外,主要是考虑到cgi返回的数据)`,想知道什么是`cgi`?...