blob: 976fb0e5280cc54fa369730495380e607a3d42a7 [file] [log] [blame]
Tim van der Lippe706ec962021-06-04 13:24:42 +01001module.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};