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