mirror of
https://github.com/thelounge/thelounge
synced 2025-03-08 00:57:19 +00:00
5 lines
121 B
JavaScript
5 lines
121 B
JavaScript
"use strict";
|
|
|
|
Handlebars.registerHelper("localedate", function(time) {
|
|
return new Date(time).toLocaleDateString();
|
|
});
|