You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
523 B
17 lines
523 B
/** |
|
* Independent time operation tool to facilitate subsequent switch to dayjs |
|
*/ |
|
import dayjs from 'dayjs'; |
|
|
|
const DATE_TIME_FORMAT = 'YYYY-MM-DD HH:mm:ss'; |
|
const DATE_FORMAT = 'YYYY-MM-DD'; |
|
|
|
export function formatToDateTime(date: dayjs.Dayjs | undefined = undefined, format = DATE_TIME_FORMAT): string { |
|
return dayjs(date).format(format); |
|
} |
|
|
|
export function formatToDate(date: dayjs.Dayjs | undefined = undefined, format = DATE_FORMAT): string { |
|
return dayjs(date).format(format); |
|
} |
|
|
|
export const dateUtil = dayjs;
|
|
|