3 lines
167 B
TypeScript
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`)
|