ptitlutins/app/utils/childrenOf.ts
2026-06-10 23:37:21 +02:00

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 ?? []