5 lines
195 B
TypeScript
5 lines
195 B
TypeScript
import type { Node } from "~/types"
|
|
|
|
/* ---- navigation over the node tree (path = node ids below the root) ---- */
|
|
|
|
export const childrenOf = (node: Node | null): Node[] => node?.children ?? []
|