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

endOfWeek

import { endOfWeek } from "https://esm.sh/v135/date-fns@3.6.0/index.d.mts";
@example
// The end of a week for 2 September 2014 11:55:00:
const result = endOfWeek(new Date(2014, 8, 2, 11, 55, 0))
//=> Sat Sep 06 2014 23:59:59.999
@example
// If the week starts on Monday, the end of the week for 2 September 2014 11:55:00:
const result = endOfWeek(new Date(2014, 8, 2, 11, 55, 0), { weekStartsOn: 1 })
//=> Sun Sep 07 2014 23:59:59.999
function endOfWeek<DateType extends Date>(date: DateType | number | string, options?: EndOfWeekOptions): DateType;
§
endOfWeek<DateType extends Date>(date: DateType | number | string, options?: EndOfWeekOptions): DateType
[src]

§Type Parameters

§
DateType extends Date
[src]

§Parameters

§
date: DateType | number | string
[src]
  • The original date
§
options?: EndOfWeekOptions optional
[src]
  • An object with options

§Return Type

§
DateType
[src]

The end of a week