mirror of
https://github.com/thelounge/thelounge
synced 2024-11-26 14:00:21 +00:00
7 lines
131 B
JavaScript
7 lines
131 B
JavaScript
"use strict";
|
|
|
|
const moment = require("moment");
|
|
|
|
module.exports = function(time) {
|
|
return moment(time).format("D MMMM YYYY");
|
|
};
|