UNPKG

@burglekitt/gmt

Version:

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

27 lines (26 loc) 808 B
import { Temporal } from "@js-temporal/polyfill"; import { isValidTimeZone } from "../validate/index.js"; /** * Return the current minute for the specified IANA timeZone. * * - Uses Temporal.Now.zonedDateTimeISO to get the current time. * - Validation is performed on the timezone. * * @param ianaTimezone IANA timeZone identifier * @returns current minute string (zero-padded to 2 digits) or "" on invalid input * * @example getZonedMinute("America/New_York") // "00" * @example getZonedMinute("invalid") // "" */ export function getZonedMinute(ianaTimezone) { if (!isValidTimeZone(ianaTimezone)) return ""; try { return Temporal.Now.zonedDateTimeISO(ianaTimezone) .minute.toString() .padStart(2, "0"); } catch { return ""; } }