()
| 116 | } |
| 117 | |
| 118 | const getAllKeys = (): string[] => { |
| 119 | return [...items.map((i) => i.id), ...folders.map((f) => f.id)] |
| 120 | } |
| 121 | |
| 122 | const allKeys = getAllKeys() |
| 123 | const isAllSelected = allKeys.length > 0 && checkedKeys.length === allKeys.length |
no outgoing calls
no test coverage detected