Skip to main content
Module

x/date_fns/index.js>subMinutes

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

Examples

// Subtract 30 minutes from 10 July 2014 12:00:00: var result = subMinutes(new Date(2014, 6, 10, 12, 0), 30) //=> Thu Jul 10 2014 11:30:00

Parameters

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