/*
最初のブロックを 2 番目のブロックにすることはできますか? requestAnimationFrame で同様のことを行いましたが、ドットのため、ここでは機能しないようです。
*/
////////////////////////////////////////////////////////////////////////////////////////
window.performance = window.performance || {};
window.performance.now = (function()
{
return window.performance.now ||
window.performance.webkitNow ||
window.performance.msNow ||
window.performance.mozNow ||
window.performance.oNow || function() { return new Date().getTime(); };
})();
var PeRfOrMaNcE = window.performance;
console.log(PeRfOrMaNcE.now());
////////////////////////////////////////////////////////////////////////////////////////
var PeRfOrMaNcE = (function()
{
return window.performance.now ||
window.performance.webkitNow ||
window.performance.msNow ||
window.performance.mozNow ||
window.performance.oNow || function() { return new Date().getTime(); };
})();
console.log(PeRfOrMaNcE());