Skip to content

maxTime

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

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

  • Returns null if the array is empty or contains no valid times.
  • Validation is performed on each item in the array.
Parameter Type Description
times string[] Array of ISO PlainTime strings (e.g. “14:30:00”)

The latest time string, or null on invalid input

maxTime(["14:30:00", "09:00:00", "20:45:00"]) // "20:45:00"
maxTime([]) // null

plain/calculate/maxTime.ts