UNPKG

@burglekitt/gmt

Version:

Temporal-based date and time utilities with timezone support and polyfill integration

14 lines (13 loc) 499 B
/** * Extracts the IANA timeZone identifier from an ISO 8601 zoned datetime string. * * - Extracts timezone id from a ZonedDateTime. * - Returns "" for invalid input. * * @param value ISO 8601 zoned datetime string * @returns IANA timeZone id (e.g. Europe/Paris) or "" for invalid * * @example chopZonedDateTime("2024-02-29T12:30:45+01:00[Europe/Paris]") // "Europe/Paris" * @example chopZonedDateTime("invalid") // "" */ export declare function chopZonedDateTime(value: string): string;