taqwim-core-utils • Docs
taqwim-core-utils / addHijriDays
Function: addHijriDays()
addHijriDays(
date
,amount
):HijriDateObject
|null
Parameters
• date: HijriDateObject
The date to be changed
• amount: number
The amount of days to be added.
Returns
HijriDateObject
| null
The new date with the days added
Name
addHijriDays
Summary
Add the specified number of days to the given date.
Description
Add the specified number of days to the given date.
Example
ts
// Add 10 days to 1 Ramadan 1445 ({ hy: 1445, hm: 9, hd: 1 })
const result = addHijriDays(
{ hy: 1445, hm: 9, hd: 1 },
, 10)
//=> { hy: 1445, hm: 10, hd: 11 }