Skip to content

getMinute

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

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.

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

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

plain/get/getMinute.ts