UNPKG

@burglekitt/gmt

Version:

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

14 lines (13 loc) 461 B
/** * Return the current minute using the system timeZone. * * - Uses Temporal.Now.plainDateTimeISO to get current minute in system timezone. * - Returns zero-padded string (e.g., "30"). * - Returns "" when system timezone is unavailable. * * @returns current minute string (zero-padded) or "" on invalid * * @example getMinute() // "00" * @example getMinute() // "" (when system timeZone unavailable) */ export declare function getMinute(): string;