minify v2.9.1 Release Notes
Release Date: 2020-08-29 // over 2 years ago-
- ๐ JS: fix parsing
in
identifier in group expressions - ๐ JS: fix parsing identifiers inside arrow function body in some cases #324
- JS: keep all license comments at the top of the file
- JS: minify
typeof x==='undefined'
totypeof x=='undefined'
- ๐ JS: merge expressions and var declarations with
for
with empty initializer or withwhile
statement converted tofor
- ๐ JS: iteratively merge
if(a){return b}if(c){return d}return e
chains toreturn a?b:c?d:e
- ๐ JS: fix parsing