getZonedToday
Signature
Section titled “Signature”getZonedToday(ianaTimezone: string): stringimport { getZonedToday } from "@northguild/gmt/zoned/get";Return today’s date in the given IANA timeZone as an ISO date string.
- Uses Temporal.Now.zonedDateTimeISO to get current date in timezone.
- Returns “” for invalid timezone.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
ianaTimezone |
string |
IANA timeZone identifier |
Returns
Section titled “Returns”ISO date string (YYYY-MM-DD) or “” when invalid
Examples
Section titled “Examples”getZonedToday("America/New_York") // "2024-02-29"getZonedToday("invalid") // ""