import { default } from "https://deno.land/x/date_fns@v2.22.1/getWeek/index.ts";
Examples
// Which week of the local week numbering year is 2 January 2005 with default options?
const result = getISOWeek(new Date(2005, 0, 2))
//=> 2
// Which week of the local week numbering year is 2 January 2005 with default options? const result = getISOWeek(new Date(2005, 0, 2)) //=> 2
// Which week of the local week numbering year is 2 January 2005, // if Monday is the first day of the week, // and the first week of the year always contains 4 January? const result = getISOWeek(new Date(2005, 0, 2), { weekStartsOn: 1, firstWeekContainsDate: 4 }) //=> 53
Parameters
dirtyDate: Date | number
- the given date
optional
options: LocaleOptions & WeekStartOptions & FirstWeekContainsDateOptions