Skip to content

isAfterZoned

isAfterZoned(value1: string, value2: string): boolean
import { isAfterZoned } from "@northguild/gmt/zoned/compare";

Return whether value1 represents an instant strictly after value2.

  • Both inputs must be valid zoned ISO 8601 datetime strings.
  • Comparison is performed using Temporal.Instant (same instant semantics), so differing timeZone representations but the same instant will compare as equal.
  • Invalid inputs return false.
Parameter Type Description
value1 string first zoned datetime string
value2 string second zoned datetime string

true if value1 is after value2, otherwise false

isAfterZoned("2024-02-29T12:34:56.789+00:00[UTC]", "2024-02-29T12:34:56.788+00:00[UTC]") // true
isAfterZoned("invalid", "2024-02-29T12:34:56.789+00:00[UTC]") // false

zoned/compare/isAfterZoned.ts