getUnixHour
Signature
Section titled “Signature”getUnixHour(): stringimport { getUnixHour } from "@northguild/gmt/unix/get";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
Section titled “Returns”current hour string (zero-padded to 2 digits) or “” on failure
Examples
Section titled “Examples”getUnixHour() // "00"getUnixHour() // "" (on failure)