Class Interval

Constructors

  • 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.

    Parameters

    Returns Interval

    new Interval('2023-01-01/2023-01-02');
    new Interval(new DateTime('2023-01-01'), new DateTime('2023-01-02'));

Properties

start: DateTime

Methods

  • Returns true if the argument passed is contained by the interval.

    Parameters

    Returns boolean

  • Gets the duration of the interval in days.

    Returns number

  • Divides the interval into equal parts.

    Parameters

    • parts: number

    Returns Interval[]

  • 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.

    Parameters

    • Optionalunit: "years" | "months" | "weeks" | "days" | "hours" | "minutes" | "seconds"

    Returns number

  • Returns an array of intervals representing the days contained within the interval.

    Returns Interval[]

  • Returns an array of intervals representing the hours contained within the interval.

    Returns Interval[]

  • Returns an array of intervals representing the minutes contained within the interval.

    Returns Interval[]

  • Returns an array of intervals representing the months contained within the interval.

    Returns Interval[]

  • Returns an array of intervals representing the seconds contained within the interval.

    Returns 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.

    Parameters

    • unit: "day" | "hour" | "minute" | "month" | "second" | "year" | "week"

    Returns Interval[]

  • Returns an array of intervals representing the weeks contained within the interval.

    Returns Interval[]

  • Returns an array of intervals representing the years contained within the interval.

    Returns Interval[]

  • Gets the duration of the interval in hours.

    Returns number

  • Returns the intersection of this interval and the specified interval. Returns null if intervals don't intersect.

    Parameters

    Returns Interval

  • Parameters

    • interval: any

    Returns boolean

  • Gets the duration of the interval in minutes.

    Returns number

  • Gets the duration of the interval in months.

    Returns number

  • Returns true if the interval overlaps the passed argument.

    Parameters

    Returns boolean

  • Gets the duration of the interval in seconds.

    Returns number

  • 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.

    Parameters

    Returns Interval[]

  • Returns the interval as a human readable string.

    Returns string

  • Gets the duration of the interval in weeks.

    Returns number

  • Gets the duration of the interval in years.

    Returns number

  • Gets 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.

    Parameters

    • date: DateLike
    • options: { normalize?: string } = {}
      • Optionalnormalize?: string

        Normalizes output to always have 6 weeks.

    Returns Interval

  • Gets an interval representing the full day of the input.

    Parameters

    • date: DateLike

    Returns Interval

  • Gets an interval representing the month of the input.

    Parameters

    • date: DateLike

    Returns Interval

  • Gets an interval representing the week of the input.

    Parameters

    • date: DateLike

    Returns Interval

  • Gets an interval representing the year of the input.

    Parameters

    • date: DateLike

    Returns Interval