Skip to content

chopZonedTime

chopZonedTime(value: string): string
import { chopZonedTime } from "@northguild/gmt/zoned/chop";

Extracts the local date portion from an ISO 8601 zoned datetime string.

  • Extracts date components (year, month, day) from a ZonedDateTime.
  • Returns “” for invalid input.
Parameter Type Description
value string ISO 8601 zoned datetime string

Local date string YYYY-MM-DD or “” for invalid

chopZonedTime("2024-02-29T14:30:45.123-05:00[America/New_York]") // "2024-02-29"
chopZonedTime("invalid") // ""

zoned/chop/chopZonedTime.ts