2017-03-18 09:21:18 +00:00
|
|
|
"use strict";
|
|
|
|
|
2019-11-14 15:30:42 +00:00
|
|
|
import dayjs from "dayjs";
|
2017-04-29 10:31:04 +00:00
|
|
|
|
2019-11-14 15:30:42 +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
|
|
|
};
|