Skip to main content
Go to Latest
function default
import { default } from "https://deno.land/x/date_fns@v2.15.0/subWeeks/index.js";

Examples

// Subtract 4 weeks from 1 September 2014: var result = subWeeks(new Date(2014, 8, 1), 4) //=> Mon Aug 04 2014 00:00:00

Parameters

dirtyDate
  • the date to be changed
dirtyAmount
  • the amount of weeks to be subtracted. Positive decimals will be rounded using Math.floor, decimals less than zero will be rounded using Math.ceil.