Skip to main content
Module

x/date_fns/index.js>endOfWeek

date-fns Deno package
Go to Latest
function endOfWeek
import { endOfWeek } from "https://deno.land/x/date_fns@v2.0.1/index.js";

Examples

// The end of a week for 2 September 2014 11:55:00: var result = endOfWeek(new Date(2014, 8, 2, 11, 55, 0)) //=> Sat Sep 06 2014 23:59:59.999

// If the week starts on Monday, the end of the week for 2 September 2014 11:55:00: var result = endOfWeek(new Date(2014, 8, 2, 11, 55, 0), { weekStartsOn: 1 }) //=> Sun Sep 07 2014 23:59:59.999

Parameters

dirtyDate
  • the original date
dirtyOptions