1234567891011121314151617181920 |
- /**
- * Independent time operation tool to facilitate subsequent switch to dayjs
- */
- import moment from 'moment';
- const DATE_TIME_FORMAT = 'YYYY-MM-DD HH:mm:ss';
- const DATE_FORMAT = 'YYYY-MM-DD ';
- export function formatToDateTime(
- date: moment.MomentInput = undefined,
- format = DATE_TIME_FORMAT,
- ): string {
- return moment(date).format(format);
- }
- export function formatToDate(date: moment.MomentInput = undefined, format = DATE_FORMAT): string {
- return moment(date).format(format);
- }
- export const dateUtil = moment;
|