mirror of
https://github.com/thelounge/thelounge
synced 2024-12-03 09:19:14 +00:00
7 lines
125 B
JavaScript
7 lines
125 B
JavaScript
"use strict";
|
|
|
|
const moment = require("moment");
|
|
|
|
module.exports = function(time) {
|
|
return moment(time).format("HH:mm");
|
|
};
|