butternut icon indicating copy to clipboard operation
butternut copied to clipboard

Optimise assignments in if blocks

Open Rich-Harris opened this issue 7 years ago • 0 comments

// input
if ( a ) {
  obj = {}
} else {
  obj = null;
}

// ideal
obj=a?{}:null

// actual
a?(obj={}):(obj=null)

Uglify and Closure both get to the ideal version.

Rich-Harris avatar May 10 '17 18:05 Rich-Harris