Skip to content

Instantly share code, notes, and snippets.

@yesasha
Last active August 29, 2015 14:16
Show Gist options
  • Save yesasha/3039891699adf8a61097 to your computer and use it in GitHub Desktop.
Save yesasha/3039891699adf8a61097 to your computer and use it in GitHub Desktop.
Date.now() polyfill
// Date.now() polyfill for old browsers (<ie 8)
if (!Date.now) {
Date.now = function () {
return (new Date).getTime();
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment