cosmetic changes

This commit is contained in:
rolux 2013-12-06 10:31:33 +01:00
parent 7516cf8c00
commit ba0336f3c9

View file

@ -152,7 +152,7 @@ Ox.time <f> Returns the time it takes to execute a given function
(fn) -> <n> Time in milliseconds
@*/
Ox.time = function(fn) {
var time = new Date;
var time = new Date();
fn();
return new Date() - time;
};