Skip to content

maxDate

maxDate(dates: string[]): string
import { maxDate } from "@northguild/gmt/plain/calculate";

Return the latest (maximum) of the given PlainDate values.

  • Returns null if the array is empty or contains no valid dates.
  • Validation is performed on each item in the array.
Parameter Type Description
dates string[] Array of ISO PlainDate strings (e.g. “2024-03-10”)

The latest date string, or null on invalid input

maxDate(["2024-03-10", "2024-03-15", "2024-03-12"]) // "2024-03-15"
maxDate([]) // null

plain/calculate/maxDate.ts