mirror of
https://github.com/thelounge/thelounge
synced 2024-11-23 12:33:07 +00:00
7 lines
141 B
JavaScript
7 lines
141 B
JavaScript
"use strict";
|
|
|
|
const moment = require("moment");
|
|
|
|
module.exports = function(time) {
|
|
return moment(time).format("D MMMM YYYY, HH:mm:ss");
|
|
};
|