Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

endOfISOWeek

import { endOfISOWeek } from "https://esm.sh/v135/date-fns@3.6.0/index.d.mts";
@example
// The end of an ISO week for 2 September 2014 11:55:00:
const result = endOfISOWeek(new Date(2014, 8, 2, 11, 55, 0))
//=> Sun Sep 07 2014 23:59:59.999
function endOfISOWeek<DateType extends Date>(date: DateType | number | string): DateType;
§
endOfISOWeek<DateType extends Date>(date: DateType | number | string): DateType
[src]

§Type Parameters

§
DateType extends Date
[src]

§Parameters

§
date: DateType | number | string
[src]
  • The original date

§Return Type

§
DateType
[src]

The end of an ISO week