mirror of
https://github.com/SamEyeBam/animate.git
synced 2025-09-28 06:55:25 +00:00
13 lines
295 B
JavaScript
13 lines
295 B
JavaScript
'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;
|