UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

6 lines 220 B
import dayjs from 'dayjs'; export var getChatItemTime = function getChatItemTime(updateAt) { var time = dayjs(updateAt); if (time.isSame(dayjs(), 'day')) return time.format('HH:mm'); return time.format('MM-DD'); };