intervalAbutsTime
Signature
Section titled “Signature”intervalAbutsTime(aStart: string, aEnd: string, bStart: string, bEnd: string): booleanimport { intervalAbutsTime } from "@northguild/gmt/plain/interval";Return true when two time intervals are exactly adjacent — one’s end equals the other’s start
- with zero gap and zero overlap.
- Uses
Temporal.PlainTime.comparefor comparison. - Returns
truewhenaEnd + 1 nanosecond === bStartorbEnd + 1 nanosecond === aStart. - Returns
falsewhen intervals overlap, are disjoint with a gap, or are invalid. - Returns
falseon invalid input (wrong type, malformed strings).
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
aStart |
string |
ISO 8601 time string for the first interval start |
aEnd |
string |
ISO 8601 time string for the first interval end |
bStart |
string |
ISO 8601 time string for the second interval start |
bEnd |
string |
ISO 8601 time string for the second interval end |
Returns
Section titled “Returns”true if intervals are exactly adjacent, or false on invalid input
Examples
Section titled “Examples”intervalAbutsTime("09:00:00", "12:00:00", "12:00:00.000000001", "17:00:00") // trueintervalAbutsTime("12:00:00", "17:00:00", "09:00:00", "12:00:00") // trueintervalAbutsTime("09:00:00", "12:00:00", "12:00:01", "17:00:00") // false (gap)intervalAbutsTime("09:00:00", "13:00:00", "12:00:00", "17:00:00") // false (overlap)intervalAbutsTime("invalid", "12:00:00", "12:00:00", "17:00:00") // false