push
github
2519 of 5999 branches covered (41.99%)
Branch coverage included in aggregate %.
17 of 17 new or added lines in 4 files covered. (100.0%)
6282 of 12622 relevant lines covered (49.77%)
416.39 hits per line
1 |
/**
|
39✔ |
2 |
* @param node |
39✔ |
3 |
* @param point |
39✔ |
4 |
*/ |
39✔ |
5 |
function intersectNode(node, point) { |
39✔ |
6 |
// console.info('Intersect Node');
|
39✔ |
7 |
return node.intersect(point);
|
39✔ |
8 |
} |
|
|
|
39✔ |
|
export default intersectNode; |
|