Fix export

This commit is contained in:
Sidharth Vinod
2022-09-01 23:39:30 +05:30
parent 01562528b7
commit 84bf79f72b

View File

@@ -1,5 +1,3 @@
module.exports = intersectNode;
/**
* @param node
* @param point
@@ -8,3 +6,5 @@ function intersectNode(node, point) {
// console.info('Intersect Node');
return node.intersect(point);
}
export default intersectNode;