Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Very Popular
Latest
function default
import { default } from "https://deno.land/x/date_fns@v2.22.1/isSameISOWeek/index.ts";

Examples

// Are 1 September 2014 and 7 September 2014 in the same ISO week? var result = isSameISOWeek(new Date(2014, 8, 1), new Date(2014, 8, 7)) //=> true

Parameters

dirtyDateLeft: Date | number
  • the first date to check
dirtyDateRight: Date | number
  • the second date to check

Returns

boolean

the dates are in the same ISO week