(value: unknown)
| 168 | } |
| 169 | |
| 170 | function array(value: unknown) { |
| 171 | return Array.isArray(value) ? value : [] |
| 172 | } |
| 173 | |
| 174 | function statuses(input: Record<string, Captured>) { |
| 175 | return Object.fromEntries(Object.entries(input).map(([key, value]) => [key, value.status])) |
no outgoing calls
no test coverage detected