Skip to main content
Very Popular
Latest
function default
import { default } from "https://deno.land/x/date_fns@v2.22.1/closestTo/index.js";

Examples

// Which date is closer to 6 September 2015: 1 January 2000 or 1 January 2030? var dateToCompare = new Date(2015, 8, 6) var result = closestTo(dateToCompare, [ new Date(2000, 0, 1), new Date(2030, 0, 1) ]) //=> Tue Jan 01 2030 00:00:00

Parameters

dirtyDateToCompare
  • the date to compare with
dirtyDatesArray
  • the array to search