21 lines
523 B
TypeScript
21 lines
523 B
TypeScript
/**
|
|
* Independent time operation tool to facilitate subsequent switch to dayjs
|
|
*/
|
|
import moment from 'moment';
|
|
|
|
const DATE_TIME_FORMAT = 'YYYY-MM-DD HH:mm';
|
|
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;
|