javascript-obfuscator 3.2.1 → 3.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/README.md +0 -1
- package/dist/index.browser.js +1 -1
- package/dist/index.browser.js.map +1 -1
- package/dist/index.cli.js +1 -1
- package/dist/index.cli.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +13 -12
- package/typings/src/constants/ReservedIdentifierNames.d.ts +1 -0
- package/typings/src/enums/node/NodeType.d.ts +1 -0
- package/typings/src/generators/identifier-names-generators/AbstractIdentifierNamesGenerator.d.ts +1 -1
- package/typings/src/interfaces/node-transformers/simplifying-transformers/IIteratedStatementsSimplifyData.d.ts +1 -0
- package/typings/src/node/NodeGuards.d.ts +2 -1
- package/typings/src/node-transformers/control-flow-transformers/StringArrayControlFlowTransformer.d.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
Change Log
|
|
2
2
|
|
|
3
|
+
v3.2.5
|
|
4
|
+
---
|
|
5
|
+
* Fixed https://github.com/javascript-obfuscator/javascript-obfuscator/issues/1056
|
|
6
|
+
|
|
7
|
+
v3.2.4
|
|
8
|
+
---
|
|
9
|
+
* Fixed https://github.com/javascript-obfuscator/javascript-obfuscator/issues/1052
|
|
10
|
+
|
|
11
|
+
v3.2.3
|
|
12
|
+
---
|
|
13
|
+
* Fixed missing transformation of string array calls in some cases
|
|
14
|
+
* Fixed generation of reserved identifier names like `Map` or `Set` for `mangled` and `mangled-shuffled` identifier names generators
|
|
15
|
+
|
|
16
|
+
v3.2.2
|
|
17
|
+
---
|
|
18
|
+
* Fixed https://github.com/javascript-obfuscator/javascript-obfuscator/issues/1039
|
|
19
|
+
|
|
3
20
|
v3.2.1
|
|
4
21
|
---
|
|
5
22
|
* Updated copyright
|
package/README.md
CHANGED
|
@@ -1518,7 +1518,6 @@ The performance will be much slower than without obfuscation
|
|
|
1518
1518
|
splitStrings: true,
|
|
1519
1519
|
splitStringsChunkLength: 5,
|
|
1520
1520
|
stringArray: true,
|
|
1521
|
-
stringArray: true,
|
|
1522
1521
|
stringArrayCallsTransform: true,
|
|
1523
1522
|
stringArrayEncoding: ['rc4'],
|
|
1524
1523
|
stringArrayIndexShift: true,
|