hardlounge/client/js/libs/handlebars/date.js

8 lines
123 B
JavaScript
Raw Normal View History

2016-03-20 13:18:43 -04:00
Handlebars.registerHelper(
"localeDate", function(date) {
date = new Date(date);
return date.toLocaleString();
}
);