Skip to content

Instantly share code, notes, and snippets.

@kristiankime
Created June 6, 2014 11:18
Show Gist options
  • Save kristiankime/ed88e7b67873b0e2d67c to your computer and use it in GitHub Desktop.
Save kristiankime/ed88e7b67873b0e2d67c to your computer and use it in GitHub Desktop.
//based on http://stackoverflow.com/questions/6525538/convert-utc-date-time-to-local-date-time-using-javascript
if (!ARTC) {
var ARTC = {};
}
ARTC.localize = function (t) {
document.write(moment(new Date(t + " UTC")).format('MMMM Do YYYY, h:mm:ss a'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment