nitro/apps/frontend/src/api/chat-history/ChatHistoryCurrentDate.ts

6 lines
206 B
TypeScript

export const ChatHistoryCurrentDate = () => {
const currentTime = new Date();
return `${currentTime.getHours().toString().padStart(2, "0")}:${currentTime.getMinutes().toString().padStart(2, "0")}`;
};