(value: string)
| 65 | } |
| 66 | |
| 67 | function normalizeUserFacingName(value: string): string | null { |
| 68 | const trimmed = value.trim() |
| 69 | return trimmed.length > 0 ? trimmed : null |
| 70 | } |
| 71 | |
| 72 | function resolveUserFacingName(tool: Tool | undefined): string | null { |
| 73 | if (!tool) return null |
no outgoing calls
no test coverage detected