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.
18 lines
481 B
18 lines
481 B
2 years ago
|
/**
|
||
|
* 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.ConfigType, format = DATE_TIME_FORMAT): string {
|
||
|
return dayjs(date).format(format)
|
||
|
}
|
||
|
|
||
|
export function formatToDate(date?: dayjs.ConfigType, format = DATE_FORMAT): string {
|
||
|
return dayjs(date).format(format)
|
||
|
}
|
||
|
|
||
|
export const dateUtil = dayjs
|