Blame view

node_modules/consola/src/utils/date.js 117 Bytes
4cd4fd28   郭伟龙   feat: 初始化项目
1
2
3
4
5
import dayjs from 'dayjs'

export function formatDate (timeFormat, date) {
  return dayjs(date).format(timeFormat)
}