Fix export

This commit is contained in:
Sidharth Vinod 2022-09-01 23:39:30 +05:30
parent 01562528b7
commit 84bf79f72b
No known key found for this signature in database
GPG Key ID: FB5CCD378D3907CD
1 changed files with 2 additions and 2 deletions

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;