javascript-deobfuscator
javascript-deobfuscator copied to clipboard
[Bug] Simplify Expression: Fails when variables are present
function R(a) {
return a - 42 + 42;
}
should be simplified to
function R(a) {
return a;
}
but is not.