Skip to main content
Very Popular
Latest
function default
import { default } from "https://deno.land/x/date_fns@v2.22.1/addISOWeekYears/index.ts";

Examples

// Add 5 ISO week-numbering years to 2 July 2010: const result = addISOWeekYears(new Date(2010, 6, 2), 5) //=> Fri Jun 26 2015 00:00:00

Parameters

dirtyDate: Date | number
  • the date to be changed
dirtyAmount: number
  • the amount of ISO week-numbering years to be added. Positive decimals will be rounded using Math.floor, decimals less than zero will be rounded using Math.ceil.

Returns

the new date with the ISO week-numbering years added