You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[+] Obfuscation type is Generic
[+] resolveProxyVariables committed 1 new changes!
[+] ==> Cycle 1 completed in 0.008 seconds with 1 changes (22 nodes)
[+] ==> Cycle 2 completed in 0 seconds with 1 changes (22 nodes)
....
d = (a, b) => {
console.log(x);
};
d(2, [
1,
2,
3
]);
so x is not replaced by b[0]. I even wonder if this would be wanted, I would say it makes more sense to keep de-structuring proxy variables most of the time.
The text was updated successfully, but these errors were encountered:
Consider the following example:
this gives
so
x
is not replaced byb[0]
. I even wonder if this would be wanted, I would say it makes more sense to keep de-structuring proxy variables most of the time.The text was updated successfully, but these errors were encountered: