Construct a CalendarRange.
A CalendarRange is a CalendarPeriod that is divided up by increments of time into
a series of CalendarStep segments. These segments can be iterated over in a for
loop:
for (const step in calendarRange) {
console.log(step.start, step.end, JSON.stringify(step.length));
}
The start Date
.
The end Date
.
The units of increment.
The number of units.
Generated using TypeDoc
Calendar range, an iterable CalendarPeriod, incrementing by the supplied step size.
The size is specified as either a CalendarStep or a CalendarUnit and count.