Nitro-Cool-UI/src/api/chat-history/ChatHistoryCurrentDate.ts
duckietm 8edee0d5b4 ✌️ V3 Startup
2025-03-10 15:27:54 +01:00

7 lines
214 B
TypeScript

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