JShrink
JShrink copied to clipboard
proper string concatenation
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';