Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

min

import { min } from "https://esm.sh/v135/date-fns@3.6.0/index.d.mts";
@example
// Which of these dates is the earliest?
const result = min([
  new Date(1989, 6, 10),
  new Date(1987, 1, 11),
  new Date(1995, 6, 2),
  new Date(1990, 0, 1)
])
//=> Wed Feb 11 1987 00:00:00
function min<DateType extends Date>(dates: Array<DateType | number | string>): DateType | Date;
§
min<DateType extends Date>(dates: Array<DateType | number | string>): DateType | Date
[src]

§Type Parameters

§
DateType extends Date
[src]

§Parameters

§
dates: Array<DateType | number | string>
[src]
  • The dates to compare

§Return Type

§
DateType | Date
[src]

The earliest of the dates