diff options
author | Thomas F. K. Jorna <[email protected]> | 2022-09-27 15:09:17 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2022-09-27 15:09:17 +0200 |
commit | a575d14b6621d5464d33d52ca642f2db70c3e370 (patch) | |
tree | 5a1d38227a93b1bf2b152ed4af5820a59c34cf91 /util/isLinkRelatedToNode.ts | |
parent | fa84c052b221d157fa869cd4912acd538b5005a0 (diff) |
fix: move a ton of functions to separate files
Diffstat (limited to 'util/isLinkRelatedToNode.ts')
-rw-r--r-- | util/isLinkRelatedToNode.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/util/isLinkRelatedToNode.ts b/util/isLinkRelatedToNode.ts new file mode 100644 index 0000000..eeacab7 --- /dev/null +++ b/util/isLinkRelatedToNode.ts @@ -0,0 +1,7 @@ +import { NodeObject, LinkObject } from 'force-graph' + +export const isLinkRelatedToNode = (link: LinkObject, node: NodeObject | null) => { + return ( + (link.source as NodeObject)?.id! === node?.id! || (link.target as NodeObject)?.id! === node?.id! + ) +} |