Skip to content

Instantly share code, notes, and snippets.

@BKcore
Created August 22, 2012 14:27
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save BKcore/3426111 to your computer and use it in GitHub Desktop.
Save BKcore/3426111 to your computer and use it in GitHub Desktop.
Performance.now() polyfill
(function(w){
var perfNow;
var perfNowNames = ['now', 'webkitNow', 'msNow', 'mozNow'];
if(!!w['performance']) for(var i = 0; i < perfNowNames.length; ++i)
{
var n = perfNowNames[i];
if(!!w['performance'][n])
{
perfNow = function(){return w['performance'][n]()};
break;
}
}
if(!perfNow)
{
perfNow = Date.now;
}
w.perfNow = perfNow;
})(window);
// Usage
console.log(window.perfNow());
@dsamarin
Copy link

dsamarin commented Jun 1, 2013

+(new Date()) // this is a number
function now() { return +(new Date()); } // this is a function that returns a number

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment