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