Skip to content

getUnixSecond

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

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

getUnixSecond() // "45"
getUnixSecond() // "" (on failure)

unix/get/getUnixSecond.ts