Spaces:
Configuration error
Configuration error
File size: 295 Bytes
a053984 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
'use strict';
function hasNoChildren(node) {
return !node || !node.children || node.children.isEmpty;
}
function isNodeChildrenList(node, list) {
return node !== null && node.children === list;
}
exports.hasNoChildren = hasNoChildren;
exports.isNodeChildrenList = isNodeChildrenList;
|