mirror of
https://github.com/thelounge/thelounge
synced 2024-12-21 01:43:07 +00:00
15 lines
205 B
JavaScript
15 lines
205 B
JavaScript
module.exports = function(time) {
|
|
time = new Date(time);
|
|
var h = time.getHours();
|
|
var m = time.getMinutes();
|
|
|
|
if (h < 10) {
|
|
h = "0" + h;
|
|
}
|
|
|
|
if (m < 10) {
|
|
m = "0" + m;
|
|
}
|
|
|
|
return h + ":" + m;
|
|
};
|