mirror of
https://github.com/SamEyeBam/animate.git
synced 2025-09-28 06:55:25 +00:00
8 lines
205 B
JavaScript
8 lines
205 B
JavaScript
export function hasNoChildren(node) {
|
|
return !node || !node.children || node.children.isEmpty;
|
|
}
|
|
|
|
export function isNodeChildrenList(node, list) {
|
|
return node !== null && node.children === list;
|
|
}
|