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

Examples

// The start of a week for 2 September 2014 11:55:00: var result = startOfWeek(new Date(2014, 8, 2, 11, 55, 0)) //=> Sun Aug 31 2014 00:00:00

// If the week starts on Monday, the start of the week for 2 September 2014 11:55:00: var result = startOfWeek(new Date(2014, 8, 2, 11, 55, 0), { weekStartsOn: 1 }) //=> Mon Sep 01 2014 00:00:00

Parameters

dirtyDate
  • the original date
dirtyOptions