UNPKG

@1771technologies/lytenyte-pro

Version:

Blazingly fast headless React data grid with 100s of features.

10 lines (9 loc) 208 B
export function getNodePath(c) { const path = []; let current = c; while (current.kind !== "root") { path.unshift(current.path); current = current.parent; } return path; }