(...values: unknown[])
| 10 | } |
| 11 | |
| 12 | function firstNonEmptyString(...values: unknown[]): string | null { |
| 13 | for (const value of values) { |
| 14 | const normalized = asString(value); |
| 15 | if (normalized) { |
| 16 | return normalized; |
| 17 | } |
| 18 | } |
| 19 | return null; |
| 20 | } |
| 21 | |
| 22 | function normalizeSubagentKind(value: string): string { |
| 23 | const normalized = value |
no test coverage detected