You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 30, 2020. It is now read-only.
if/else blocks get a new line character added incorrectly, causing some browsers to fails with 'Unexpected strict mode reserved word'
This input javascript
if (true) {
console.log('in if');
} else {
console.log('in else');
}
results in this minified block
;if(!0){console.log('in if')}
else{console.log('in else')}
instead of
;if(!0){console.log('in if')}else{console.log('in else')}
This was introduced by dc3c407. See also #25