javascript-obfuscator 5.4.5 → 5.4.6
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 +4 -0
- package/dist/index.browser.js +3 -3
- 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 +1 -1
- package/typings/src/interfaces/storages/string-array-transformers/ILiteralNodesCacheStorage.d.ts +1 -1
- package/typings/src/interfaces/utils/IEscapeSequenceEncoder.d.ts +1 -0
- package/typings/src/storages/string-array-transformers/LiteralNodesCacheStorage.d.ts +1 -1
- package/typings/src/utils/EscapeSequenceEncoder.d.ts +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
Change Log
|
|
2
2
|
|
|
3
|
+
v5.4.6
|
|
4
|
+
---
|
|
5
|
+
* Fixed unicode (`\uXXXX`, `\u{XXXX}`) and hex (`\xXX`) escape sequences of string literals being un-escaped into their literal characters during obfuscation. Fixes https://github.com/javascript-obfuscator/javascript-obfuscator/issues/345
|
|
6
|
+
|
|
3
7
|
v5.4.5
|
|
4
8
|
---
|
|
5
9
|
* Fixed `controlFlowFlattening` intermittently dropping arguments of a spread call (e.g. `foo(...args)`) when it reused a control flow wrapper of a same-arity plain call. Fixes https://github.com/javascript-obfuscator/javascript-obfuscator/issues/1423
|