github
1238 of 1529 branches covered (80.97%)
Branch coverage included in aggregate %.
64 of 64 new or added lines in 5 files covered. (100.0%)
12441 of 27382 relevant lines covered (45.43%)
357.31 hits per line
1 |
/**
|
1✔ |
2 |
* @param node |
1✔ |
3 |
* @param point |
1✔ |
4 |
*/ |
1✔ |
5 |
function intersectNode(node, point) { |
1✔ |
6 |
// console.info('Intersect Node');
|
× |
7 |
return node.intersect(point);
|
× |
8 |
} |
× |
9 |
|
× |
10 |
export default intersectNode; |
1✔ |