2017-04-04 04:36:03 +00:00
|
|
|
// Return true if any section of "a" or "b" parts (defined by their start/end
|
2022-06-19 00:25:21 +00:00
|
|
|
|
|
|
|
import {Part} from "./merge";
|
|
|
|
|
2017-04-04 04:36:03 +00:00
|
|
|
// markers) intersect each other, false otherwise.
|
2022-06-19 00:25:21 +00:00
|
|
|
function anyIntersection(a: Part, b: Part) {
|
2019-07-17 09:33:59 +00:00
|
|
|
return (
|
|
|
|
(a.start <= b.start && b.start < a.end) ||
|
|
|
|
(a.start < b.end && b.end <= a.end) ||
|
|
|
|
(b.start <= a.start && a.start < b.end) ||
|
|
|
|
(b.start < a.end && a.end <= b.end)
|
|
|
|
);
|
2017-03-18 08:35:17 +00:00
|
|
|
}
|
|
|
|
|
2019-11-16 17:24:03 +00:00
|
|
|
export default anyIntersection;
|