Skip to content

getUnixDay

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

Return the current day 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 day string (zero-padded to 2 digits) or “” on failure

getUnixDay() // "29"
getUnixDay() // "" (on failure)

unix/get/getUnixDay.ts