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
(contrived example, based on code i was unminifying)
function e(t) { function n() {} var e = 'foo'; var c = [1, 2, 3]; (function t(e, a, n) { console.log(e); (n < a.length) && t(e, a, n + 1) })(n, c); }
on "safe" safety level, this is unminified to
function e(t) { function n() {} var e = 'foo'; var c = [1, 2, 3]; (function t() { var e = n; var a = c; var n; console.log(e); if (n < a.length) { t(e, a, n + 1); } })(); }
in which the n is now shadowed and is not available in the iife, and the recursion is broken
n
The text was updated successfully, but these errors were encountered:
Thanks for the report, that's definitely a bug!
Sorry, something went wrong.
No branches or pull requests
(contrived example, based on code i was unminifying)
on "safe" safety level, this is unminified to
in which the
n
is now shadowed and is not available in the iife, and the recursion is brokenThe text was updated successfully, but these errors were encountered: