thelounge/client/js/helpers/localetime.js

8 lines
142 B
JavaScript
Raw Normal View History

"use strict";
import dayjs from "dayjs";
2017-04-29 10:31:04 +00:00
export const localetime = function(time) {
return dayjs(time).format("D MMMM YYYY, HH:mm:ss");
2016-12-18 15:53:28 +00:00
};