mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-07 19:25:13 +02:00
9 lines
241 B
JavaScript
9 lines
241 B
JavaScript
module.exports = {
|
|
hasNoChildren: function(node) {
|
|
return !node || !node.children || node.children.isEmpty();
|
|
},
|
|
isNodeChildrenList: function(node, list) {
|
|
return node !== null && node.children === list;
|
|
}
|
|
};
|