Closed loilo closed 7 years ago
Butternut hiccups on nested if blocks with no statements inside.
if
Input:
if ( any_condition_1 ) { if ( any_condition_2 ) { } }
Output Butternut 0.4.6:
any_condition_1&&()
Output UglifyJS 3.0.8:
any_condition_1&&any_condition_2;
duplicates #127
That's right. Closing in favor of #127 then.
Butternut hiccups on nested
if
blocks with no statements inside.Input:
Output Butternut 0.4.6:
Output UglifyJS 3.0.8: