(funcOrValue, ...args)
| 63 | } |
| 64 | |
| 65 | export function callOrReturn(funcOrValue, ...args) { |
| 66 | return typeof funcOrValue === 'function' ? funcOrValue(...args) : funcOrValue; |
| 67 | } |
| 68 | |
| 69 | export function hasChildren(data) { |
| 70 | return Array.isArray(data.children) && data.children.length > 0; |
no outgoing calls
no test coverage detected