We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example:
var i, n, r, Ya; (Ya = [2, 0]), (r = e.length), (n = r << Ya[0]);
Should become:
var i, n, r, Ya; Ya = [2, 0]; r = e.length; n = r << Ya[0];
Or ideally:
var i; var Ya = [2, 0]; var r = e.length; var n = r << Ya[0];
The text was updated successfully, but these errors were encountered:
That's a good suggestion, I'll add it to the to-do list. In the meantime my other deobfuscator (online version) already has this feature implemented.
Sorry, something went wrong.
No branches or pull requests
For example:
Should become:
Or ideally:
The text was updated successfully, but these errors were encountered: