For example the following piece of code:
function fun(a) {
console.log(a);
var a = 123;
console.log(a);
}
Expected Behavior
Should be something like:
function fun(b) {
console['log'](b);
var b = 0x7b;
console['log'](b);
}
Current Behavior
Here variable b is never used and it console.logs the variable c which is undefined.
function fun(b) {
console['log'](c);
var c = 0x7b;
console['log'](c);
}
Your Environment
- Obfuscator version used: 0.25.1
For example the following piece of code:
Expected Behavior
Should be something like:
Current Behavior
Here variable b is never used and it console.logs the variable c which is undefined.
Your Environment