ben-sb / javascript-deobfuscator

General purpose JavaScript deobfuscator
https://deobfuscate.io
Apache License 2.0
786 stars 112 forks source link

[Feature Request] Unpack Objects #40

Open Semnodime opened 1 year ago

Semnodime commented 1 year ago

Feature Request

Unpack Objects. This already works for arrays.

Example

Unpack foo[42] into "hello world".

var foo = {42: "hello world"};
console.log(foo[42]);

Expected Result

console.log("hello world");