javascript-deobfuscator icon indicating copy to clipboard operation
javascript-deobfuscator copied to clipboard

[Bug] Simplify Expression: Fails when variables are present

Open Semnodime opened this issue 2 years ago • 0 comments

  function R(a) {
    return a - 42 + 42;
  }

should be simplified to

  function R(a) {
    return a;
  }

but is not. image

Semnodime avatar May 15 '23 22:05 Semnodime