Skip to main content
Module

x/date_fns/getWeek/index.ts>default

date-fns Deno package
Very Popular
Latest
function default
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, // 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

Returns

number

the week