phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.
32 lines (25 loc) • 605 B
JavaScript
/**
* performance.now
*/
(function () {
if ('performance' in window === false)
{
window.performance = {};
}
// Thanks IE8
Date.now = (Date.now || function () {
return new Date().getTime();
});
if ('now' in window.performance === false)
{
var nowOffset = Date.now();
if (performance.timing && performance.timing.navigationStart)
{
nowOffset = performance.timing.navigationStart;
}
window.performance.now = function now ()
{
return Date.now() - nowOffset;
}
}
})();