Skip to main content
Module

x/date_fns/index.js>subQuarters

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

Examples

// Subtract 3 quarters from 1 September 2014: var result = subQuarters(new Date(2014, 8, 1), 3) //=> Sun Dec 01 2013 00:00:00

Parameters

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