mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-27 00:17:31 +00:00
5 lines
131 B
TypeScript
5 lines
131 B
TypeScript
import dayjs from 'dayjs';
|
|
|
|
export const formatTime2YMDHM = (time?: Date) =>
|
|
time ? dayjs(time).format('YYYY-MM-DD HH:mm') : '';
|