UNPKG

@burglekitt/gmt

Version:

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

25 lines (24 loc) 655 B
import { Temporal } from "@js-temporal/polyfill"; /** * Return the current minute from UTC as a zero-padded string. * * - Uses Temporal.Now.instant() converted to UTC zoned date time. * - Returns zero-padded string to 2 digits. * - Returns "" on failure. * * @returns current minute string (zero-padded to 2 digits) or "" on failure * * @example getUtcMinute() // "30" * @example getUtcMinute() // "" (on failure) */ export function getUtcMinute() { try { return Temporal.Now.instant() .toZonedDateTimeISO("UTC") .minute.toString() .padStart(2, "0"); } catch { return ""; } }