Skip to content
This repository has been archived by the owner on Jun 10, 2018. It is now read-only.

let variable declaration instead of var #48

Open
krisvandermerwe opened this issue Jan 8, 2018 · 0 comments
Open

let variable declaration instead of var #48

krisvandermerwe opened this issue Jan 8, 2018 · 0 comments

Comments

@krisvandermerwe
Copy link

for ( var i = 0, len = sel.options.length; i < len; i++ ) {
}
compresses successfully

for ( let i = 0, len = sel.options.length; i < len; i++ ) {
}
Fails

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant