mirror of
https://github.com/thelounge/thelounge
synced 2024-12-21 01:43:07 +00:00
7 lines
123 B
JavaScript
7 lines
123 B
JavaScript
Handlebars.registerHelper(
|
|
"localeDate", function(date) {
|
|
date = new Date(date);
|
|
|
|
return date.toLocaleString();
|
|
}
|
|
);
|