Skip to content

Instantly share code, notes, and snippets.

@calvinchoy
Last active December 18, 2015 14:19
Show Gist options
  • Save calvinchoy/5796573 to your computer and use it in GitHub Desktop.
Save calvinchoy/5796573 to your computer and use it in GitHub Desktop.
JS - Date browser fix
//Date fix with some old browsers
if (!Date.now) {
Date.now = function() {
return new Date().valueOf();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment