Deep Obfuscation

  • DeepObfuscate
  • Basic

This is an enchance feature of the Name Mangling. It use a better algorithm to try to make more identifiers share the same name.

Without this feature: function a(b,c){function(d,e){}}
With this feature , the identifiers share the same name and it wouldn't break the compability. function a(a,b){function(a,b){}}