timeFormat.ts 156 B

1234567
  1. import dayjs from 'dayjs'
  2. const tf = (time: string, formatPartten = 'YYYY-MM-DD HH:mm:ss') => {
  3. return dayjs(time).format(formatPartten)
  4. }
  5. export { tf }