Closed jbt closed 7 years ago
This handles the case of:
if ( foo() ) { // empty } else { // also empty }
... which currently is being minified as:
if ( foo() ) { // empty } else
Not entirely sure why you'd have both consequent + alternate be empty but apparently I've written a few myself by repeatedly commenting stuff out.
nice, thank you!
This handles the case of:
... which currently is being minified as:
Not entirely sure why you'd have both consequent + alternate be empty but apparently I've written a few myself by repeatedly commenting stuff out.