javascript-deobfuscator
javascript-deobfuscator copied to clipboard
[Feature Request] Unpack Objects
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");