thelounge/client/js/helpers/ircmessageparser/anyIntersection.ts

16 lines
424 B
TypeScript
Raw Normal View History

// Return true if any section of "a" or "b" parts (defined by their start/end
2022-05-15 00:18:06 +02:00
import {Part} from "./merge";
// markers) intersect each other, false otherwise.
2022-05-15 00:18:06 +02:00
function anyIntersection(a: Part, b: Part) {
2019-07-17 11:33:59 +02: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)
);
}
2019-11-16 18:24:03 +01:00
export default anyIntersection;