JShrink icon indicating copy to clipboard operation
JShrink copied to clipboard

proper string concatenation

Open columbian-chris opened this issue 5 years ago • 0 comments

JShrink takes this:

var hello = 'hi ' + 'there';

and turns it into:

var hello='hi '+'there';

It is unnecessary in javascript minification to join strings with concatenation operators (plus signs). Proper minification would produce:

var hello='hi there';

columbian-chris avatar Aug 05 '19 18:08 columbian-chris