智能照明系统APP-本地串口
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.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/ce/ce5844b94bd69856fbc9da31c4d...

11 lines
265 B

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;