import { max } from "https://deno.land/x/date_fns@v2.0.0-alpha.35/index.js";
Examples
// Which of these dates is the latest?
var result = max([
new Date(1989, 6, 10),
new Date(1987, 1, 11),
new Date(1995, 6, 2),
new Date(1990, 0, 1)
])
//=> Sun Jul 02 1995 00:00:00
// Which of these dates is the latest? var result = max([ new Date(1989, 6, 10), new Date(1987, 1, 11), new Date(1995, 6, 2), new Date(1990, 0, 1) ]) //=> Sun Jul 02 1995 00:00:00