zack
feat: πŸš€ Update Chat-nFace configurations
a053984
raw
history blame
205 Bytes
export function hasNoChildren(node) {
return !node || !node.children || node.children.isEmpty;
}
export function isNodeChildrenList(node, list) {
return node !== null && node.children === list;
}