blob: 91f98ed97d768ae710c509a31132890242c29557 [file] [log] [blame]
var MAGIC = 0;
Math.random = function() {
MAGIC = Math.pow(MAGIC + 1.8912, 3) % 1;
return MAGIC;
};
var TIME = 10000;
Date.now = function() {
return TIME++;
};
performance.now = Date.now;