From a5820060497215728331388806167b054ea92f21 Mon Sep 17 00:00:00 2001 From: Excigma Date: Wed, 24 Apr 2019 12:43:20 +1200 Subject: [PATCH] Fix some Gramma Some typos annoyed me :^) --- templates/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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...