UNPKG

151 BPlain TextView Raw
1import { TreeNode } from '../types/Node'
2
3export const hasChild = (node: TreeNode): boolean => {
4 return node.isBatch || node.child.length > 0
5}