Rich-Harris / butternut

The fast, future-friendly minifier
https://butternut.now.sh
MIT License
1.17k stars 17 forks source link

Bug: if (x) if (y) {} #127

Open nifgraup opened 7 years ago

nifgraup commented 7 years ago

Input: if(x)if(y){}

Output Butternut: x&&()

Output UglifyJS: if(x)if(y){}