esmangle icon indicating copy to clipboard operation
esmangle copied to clipboard

Lift `void 0` to an unused parameter in nearest IIFE

Open michaelficarra opened this issue 13 years ago • 0 comments

(function(){
  return function(){
    return x ? y : void 0;
  };
}())

can become

(function(u){
  return function(){
    return x ? y : u;
  };
}())

michaelficarra avatar Sep 17 '12 15:09 michaelficarra