Skip to content

Instantly share code, notes, and snippets.

@tdreyno
Last active December 11, 2015 02:39
Show Gist options
  • Save tdreyno/4531832 to your computer and use it in GitHub Desktop.
Save tdreyno/4531832 to your computer and use it in GitHub Desktop.
Polyfill for new Chrome submillisecond requestAnimationFrame timer
function rightNow() {
if (window['performance'] && window['performance']['now']) {
return window['performance']['now']();
} else {
return +(new Date());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment