Files
UglifyJS/lib
Dan Wolff b49230ab8d 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();
}
2012-11-11 15:53:34 +02:00
..
2012-11-07 13:31:43 +02:00
2012-11-08 12:31:28 +02:00
2012-10-02 16:39:53 +03:00
2012-10-12 14:55:54 +03:00