diff --git a/templates/index.html b/templates/index.html index bc890bd..c713cd3 100644 --- a/templates/index.html +++ b/templates/index.html @@ -89,7 +89,7 @@

What is this?

functionality of the original code.

-

So, like UglifyJS, Closure Compiler, etc?

+

So, it is like UglifyJS, Closure Compiler, etc?

Yes and no. While UglifyJS (and others minifiers) does make the output code harder to understand (compressed and ugly), it can be easily be transformed into something readable using a JS Beautifier.

@@ -97,9 +97,9 @@

So, like UglifyJS, Closure Compiler, etc?

self-defending and debug protection.

-

How does the obfuscation works?

-

Through a series of transformations, such as variable / function / arguments renaming, strings removal, - and others, your source code is transformed into something unreadable, while working exatcly as +

How does the obfuscation work?

+

Through a series of transformations, such as variable / function / arguments renaming, string removal, + and others, your source code is transformed into something unreadable, while working exactly as before.

Read more in the FAQ...