(v: unknown)
| 165 | } |
| 166 | |
| 167 | function list<T>(v: unknown): T[] { |
| 168 | if (!Array.isArray(v)) { |
| 169 | return [] |
| 170 | } |
| 171 | |
| 172 | return v |
| 173 | } |
| 174 | |
| 175 | function info(data: ToolDict, skip: string[] = []): string { |
| 176 | const list = Object.entries(data).filter(([key, val]) => { |
no outgoing calls
no test coverage detected