mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-17 06:20:07 +02:00
7 lines
139 B
JavaScript
7 lines
139 B
JavaScript
module.exports = intersectNode;
|
|
|
|
function intersectNode(node, point) {
|
|
console.info('Intersect Node');
|
|
return node.intersect(point);
|
|
}
|