Browse Source

Fixed readme.md

sanex3339 7 years ago
parent
commit
fa0f6eee63
4 changed files with 3 additions and 3 deletions
  1. 1 1
      CHANGELOG.md
  2. 1 1
      README.md
  3. 0 0
      dist/index.js
  4. 1 1
      src/cli/JavaScriptObfuscatorCLI.ts

+ 1 - 1
CHANGELOG.md

@@ -4,7 +4,7 @@ v0.15.0
 ---
 * **Breaking change:** dropped `node@4` and `node@5` support.
 * **Breaking change:** renamed `extension` value of `target` option on `browser-no-eval`.
-* **Breaking change:** disabled generation of identifiers that matching with values of `reservedNames` option. Fixed https://github.com/javascript-obfuscator/javascript-obfuscator/issues/216
+* **Breaking change:** disabled generation of identifiers, which being matched by `reservedName` option. Fixed https://github.com/javascript-obfuscator/javascript-obfuscator/issues/216
 * **New CLI option:** `exclude` allows to exclude specific files or directories from obfuscation.
 * Fixed https://github.com/javascript-obfuscator/javascript-obfuscator/issues/217
 * Fixed https://github.com/javascript-obfuscator/javascript-obfuscator/issues/210

+ 1 - 1
README.md

@@ -603,7 +603,7 @@ Enables obfuscation of global variable and function names **with declaration**.
 ### `reservedNames`
 Type: `string[]` Default: `[]`
 
-Disables the obfuscation and generation of identifiers that matching the Regular Expression used.
+Disables obfuscation and generation of identifiers, which being matched by passed RegExp patterns.
 
 Example:
 ```ts

File diff suppressed because it is too large
+ 0 - 0
dist/index.js


+ 1 - 1
src/cli/JavaScriptObfuscatorCLI.ts

@@ -257,7 +257,7 @@ export class JavaScriptObfuscatorCLI implements IInitializable {
             )
             .option(
                 '--reserved-names <list> (comma separated, without whitespaces)',
-                'Disable obfuscation and generation of identifiers that matching the passed RegExp patterns (comma separated)',
+                'Disables obfuscation and generation of identifiers, which being matched by passed RegExp patterns (comma separated)',
                 ArraySanitizer
             )
             .option(

Some files were not shown because too many files changed in this diff