mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-11-09 15:24:13 +01:00
11 lines
181 B
JavaScript
11 lines
181 B
JavaScript
module.exports = intersectNode;
|
|
|
|
/**
|
|
* @param node
|
|
* @param point
|
|
*/
|
|
function intersectNode(node, point) {
|
|
// console.info('Intersect Node');
|
|
return node.intersect(point);
|
|
}
|