Skip to content

getUnixMonth

getUnixMonth(): string
import { getUnixMonth } from "@northguild/gmt/unix/get";

Return the current month 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.

current month string (zero-padded to 2 digits) or “” on failure

getUnixMonth() // "02"
getUnixMonth() // "" (on failure)

unix/get/getUnixMonth.ts