OpenHands / frontend /src /utils /gget-formatted-datetime.ts
Backup-bdg's picture
Upload 565 files
b59aa07 verified
raw
history blame
463 Bytes
export const getFormattedDateTime = () => {
const now = new Date();
const year = now.getFullYear();
const month = String(now.getMonth() + 1).padStart(2, "0");
const day = String(now.getDate()).padStart(2, "0");
const hour = String(now.getHours()).padStart(2, "0");
const minute = String(now.getMinutes()).padStart(2, "0");
const second = String(now.getSeconds()).padStart(2, "0");
return `${year}-${month}-${day}-${hour}-${minute}-${second}`;
};