convert x.toString() to ""+x instead of x+""
authorDan Wolff <dan.d.wolff@gmail.com>
Sun, 11 Nov 2012 13:53:34 +0000 (15:53 +0200)
committerDan Wolff <dan.d.wolff@gmail.com>
Sun, 11 Nov 2012 13:53:34 +0000 (15:53 +0200)
commitb49230ab8d717d91710d8c383c79ded77c78a39e
treea3e8e0ae60cc249ed8f70ec04c8d1ec8b4a0b4b6
parent78856a3dabffb5e22431ee5c14656d3a64076540
convert x.toString() to ""+x instead of x+""

In some places this can save one byte in whitespace, e.g. after return.
Example:

function f(arg) {
        // return""+arg - no space between return and ""
        return arg.toString();
}
lib/compress.js