UNPKG

yuxuannnn_utils

Version:
9 lines (8 loc) 260 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.formatDate = void 0; const dayjs = require("dayjs"); const formatDate = (time, format) => { return dayjs(time).format(format); }; exports.formatDate = formatDate;