Ver código fonte

update readme

sanex3339 9 anos atrás
pai
commit
c2e9a77c87
1 arquivos alterados com 4 adições e 2 exclusões
  1. 4 2
      readme.md

+ 4 - 2
readme.md

@@ -39,12 +39,14 @@ Options for JavaScript obfuscator:
 }
 }
 ```
 ```
 
 
-####Available options
-#####rotateUnicodeArray
+###Available options
+####rotateUnicodeArray
 Default: `true`
 Default: `true`
 
 
 For more hard understanding of code, during each obfuscation all literal values are stored in array as Unicode codes sequence.
 For more hard understanding of code, during each obfuscation all literal values are stored in array as Unicode codes sequence.
 This options will rotate all values inside array at random value during obfuscation of code, and insert inside source code helper function
 This options will rotate all values inside array at random value during obfuscation of code, and insert inside source code helper function
 which will rotate array values back to their original indexes.
 which will rotate array values back to their original indexes.
+
 This option affected only on visual code organisation, because we can easily get original array during debug process.
 This option affected only on visual code organisation, because we can easily get original array during debug process.
+
 Not recommended for small source code, because helper function will attract attention.
 Not recommended for small source code, because helper function will attract attention.