ptitlutins/app/utils/utcDay.ts
2026-06-10 23:37:21 +02:00

3 lines
167 B
TypeScript

/** Date at noon UTC for the day portion of an ISO string (tz-drift-free). */
export const utcDay = (iso: string): Date =>
new Date(`${iso.slice(0, 10)}T12:00:00Z`)