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
When minifying the following code, variables of the same name are used in the transformation that leads to bugs in the JavaScript minimized file.
for(let accts of data.accounts)
for(let accts of data.accounts) minimizes into for(let t of t) Both the variable and the array property end up with the same name.
for(let t of t)
for(let accts of data.accounts) minimizes into for(let a of b) The variable and property should have different names
for(let a of b)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Installed product versions
Description
When minifying the following code, variables of the same name are used in the transformation that leads to bugs in the JavaScript minimized file.
Steps to recreate
for(let accts of data.accounts)
Current behavior
for(let accts of data.accounts)
minimizes intofor(let t of t)
Both the variable and the array property end up with the same name.
Expected behavior
for(let accts of data.accounts)
minimizes intofor(let a of b)
The variable and property should have different names
The text was updated successfully, but these errors were encountered: