Files
Proxmox/lib/time.ts
Bram Suurd b788eea099 update db
2024-06-12 20:53:09 +02:00

9 lines
286 B
TypeScript

export function extractDate(dateString: string): string {
const date = new Date(dateString);
const year = date.getFullYear();
const month = String(date.getMonth() + 1).padStart(2, "0");
const day = String(date.getDate()).padStart(2, "0");
return `${year}-${month}-${day}`;
}