Skip to content

Function: subHijriDays()

@taqwim/core


@taqwim/core / subHijriDays

subHijriDays(date, amount, options?): HijriDateObject

Defined in: packages/core/src/lib/subHijriDays.ts:22

Subtract the specified number of days from the given date.

HijriDateObject

The date to be changed

number

The amount of days to be substracted.

HijriCalendarSystemOptions

HijriDateObject

The new date with the days substracted

// Add 10 days to 1 Ramadan 1445 ({ hy: 1445, hm: 9, hd: 1 })
const result = subHijriDays(
{ hy: 1445, hm: 9, hd: 1 },
, 10)
//=> { hy: 1445, hm: 10, hd: 11 }