You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
265 B
12 lines
265 B
2 years ago
|
exports = function(a, b) {
|
||
|
var min = a.start < b.start ? a : b;
|
||
|
var max = min === a ? b : a;
|
||
|
if (min.end < max.start) return;
|
||
|
return {
|
||
|
start: max.start,
|
||
|
end: min.end < max.end ? min.end : max.end
|
||
|
};
|
||
|
};
|
||
|
|
||
|
module.exports = exports;
|