Spaces:
Configuration error
Configuration error
export function hasNoChildren(node) { | |
return !node || !node.children || node.children.isEmpty; | |
} | |
export function isNodeChildrenList(node, list) { | |
return node !== null && node.children === list; | |
} | |