111c3665f9
Drop in replacement, but smaller
8 lines
142 B
JavaScript
8 lines
142 B
JavaScript
"use strict";
|
|
|
|
import dayjs from "dayjs";
|
|
|
|
export const localetime = function(time) {
|
|
return dayjs(time).format("D MMMM YYYY, HH:mm:ss");
|
|
};
|