Search code examples
javascriptevaldeobfuscation

Any JavaScript obfuscators that don't use eval in the produced obfuscated code?


I am looking for a JavaScript obfuscator tool that doesn't use eval in resulted obfuscated code.

All the tools I've seen so far use eval in resulted code.


Solution

  • None. An obfuscator by definition needs to have a way to execute arbitrary code, and in JavaScript, that is accomplished with eval.