(startMillis: number, endMillis: number)
| 20 | |
| 21 | /** @internal */ |
| 22 | export const make = (startMillis: number, endMillis: number): Interval.Interval => { |
| 23 | if (startMillis > endMillis) { |
| 24 | return empty |
| 25 | } |
| 26 | return { |
| 27 | [IntervalTypeId]: IntervalTypeId, |
| 28 | startMillis, |
| 29 | endMillis |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | /** @internal */ |
| 34 | export const lessThan = dual< |
no outgoing calls
no test coverage detected