Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(minifier): collapse
var
into for loop initializer
`var a = 0; for(;a<0;a++) {}` => `for(var a = 0;a<0;a++) {}`
- Loading branch information