Skip to content

getHour

getHour(): string
import { getHour } from "@northguild/gmt/plain/get";

Return the current hour using the system timeZone.

  • Uses Temporal.Now.plainDateTimeISO to get current hour in system timezone.
  • Returns zero-padded string (e.g., “14”).
  • Returns “” when system timezone is unavailable.

current hour string (zero-padded) or “” on invalid

getHour() // "00"
getHour() // "" (when system timeZone unavailable)

plain/get/getHour.ts