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
Compress
function z(a) { { for (var i = 0; i < a; i++) {} console.log() } console.log() }
into
function z(a) { for (var i = 0; i < a; i++) {} console.log() console.log() }
. This is safe because the block statement does not include lexical variable declarations.
If I remove the for loop or the console.log in the block, the block is inlined.
for
console.log
The text was updated successfully, but these errors were encountered:
feat(minifier): minimize block statements
5e4612b
fixes #8708
96fe7ef
d42a9b2
feat(minifier): minimize block statements (#8857)
4b4d543
Boshen
Successfully merging a pull request may close this issue.
Compress
into
. This is safe because the block statement does not include lexical variable declarations.
If I remove the
for
loop or theconsole.log
in the block, the block is inlined.The text was updated successfully, but these errors were encountered: