thelounge/client/js/helpers/localetime.js
2019-11-25 20:12:58 +02:00

8 lines
141 B
JavaScript

"use strict";
const moment = require("moment");
module.exports = function(time) {
return moment(time).format("D MMMM YYYY, HH:mm:ss");
};