mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-19 17:48:36 +00:00
8 lines
241 B
JavaScript
8 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;
|
|
}
|
|
};
|