@burglekitt/gmt
Version:
Temporal-based date and time utilities with timezone support and polyfill integration
14 lines (13 loc) • 441 B
TypeScript
/**
* Return the current hour from the Unix timestamp in 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 hour string (zero-padded to 2 digits) or "" on failure
*
* @example getUnixHour() // "00"
* @example getUnixHour() // "" (on failure)
*/
export declare function getUnixHour(): string;