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

Examples

// Add 10 business days to 1 September 2014: var result = addBusinessDays(new Date(2014, 8, 1), 10) //=> Mon Sep 15 2014 00:00:00 (skipped weekend days)

Parameters

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