You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
241 B

4 years ago
  1. module.exports = {
  2. hasNoChildren: function(node) {
  3. return !node || !node.children || node.children.isEmpty();
  4. },
  5. isNodeChildrenList: function(node, list) {
  6. return node !== null && node.children === list;
  7. }
  8. };