Returns true if the argument passed is contained by the interval.
Gets the duration of the interval in days.
Gets the duration of the interval. If a unit is specified, will return the duration in that unit, otherwise returns milliseconds. Note that "months" is a special unit with no defined duration so the result will be computed by walking the months in the interval, otherwise the duration will be computed numerically.
Optional
unit: "years" | "months" | "weeks" | "days" | "hours" | "minutes" | "seconds"Returns an array of intervals representing the days contained within the interval.
Returns an array of intervals representing the hours contained within the interval.
Returns an array of intervals representing the minutes contained within the interval.
Returns an array of intervals representing the months contained within the interval.
Returns an array of intervals representing the seconds contained within the interval.
Returns an array of intervals representing the specified units contained within the interval. Note that this may extend beyond the boundaries of the interval.
Returns an array of intervals representing the weeks contained within the interval.
Returns an array of intervals representing the years contained within the interval.
Gets the duration of the interval in hours.
Gets the duration of the interval in minutes.
Gets the duration of the interval in months.
Returns true if the interval overlaps the passed argument.
Gets the duration of the interval in seconds.
Splits the interval into multiple parts by the passed argument. If the passed argument is a specific date and falls outside the bounds of the interval a single element will be returned which is equal to the interval. If another interval is passed and overlaps either end of the interval, a single element will be returned which is the difference between the interval and the passed argument.
Returns the interval in ISO-8601 format. https://en.wikipedia.org/wiki/ISO_8601#Time_intervals
Returns the interval as a human readable string.
Gets the duration of the interval in weeks.
Gets the duration of the interval in years.
Static
getGets an interval representing the full calendar month from the first day of the week at the start to the last day of the week at the end.
Optional
normalize?: stringNormalizes output to always have 6 weeks.
Static
getStatic
getStatic
getStatic
get
Creates an interval from various input. If two arguments are passed they indicate the start and end of the interval and can be any format accepted by the DateTime constructor. If a single argument is passed it must be a string in ISO-8601 format or another interval.