1.3.0 • Published 5 years ago

@smhg/date-interval v1.3.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

date-interval Build status

Algebraic operations for time intervals.

Installation

$ npm install @smhg/date-interval

Usage

import Interval from '@smhg/date-interval';

// with ISO 8601 string
let interval1 = Interval('2015-08-03T12:00:00Z/2015-08-04T12:00:00Z');

// with 2 dates
let interval2 = Interval(new Date('2015-08-03T12:00:00Z'), new Date('2015-08-04T12:00:00Z'));

API

Interval()

Interval(String)

Pass an ISO 8601 time interval formatted string to create an interval.

Interval(Date, Date)

Pass a start and end Date object to create an interval.

interval.toString()

Returns the interval as an ISO 8601 formatted string.

interval.overlaps(Interval)

Returns whether both intervals overlap.

interval.union(Interval)

Returns an array with the result of a merge of both intervals.

interval.diff(Interval)

Returns an array with the difference of both intervals.

interval.intersection(Interval)

Returns the interval that lies at the intersection of both intervals (if any).

1.3.0

5 years ago

1.2.2

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.5

6 years ago

1.1.4

7 years ago

1.1.3

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago

0.2.3

8 years ago

0.2.2

8 years ago

0.2.1

8 years ago

0.2.0

8 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago