push
github
1564 of 1947 branches covered (80.33%)
Branch coverage included in aggregate %.
5 of 5 new or added lines in 4 files covered. (100.0%)
15412 of 30248 relevant lines covered (50.95%)
460.47 hits per line
1 |
/**
|
1✔ |
2 |
* @param node |
1✔ |
3 |
* @param point |
1✔ |
4 |
*/ |
1✔ |
5 |
function intersectNode(node, point) { |
× |
6 |
// console.info('Intersect Node');
|
× |
7 |
return node.intersect(point);
|
× |
8 |
} |
× |
9 |
|
1✔ |
10 |
export default intersectNode; |
1✔ |