(str: string)
| 114 | } |
| 115 | |
| 116 | const capitalizeWords = (str: string) => { |
| 117 | return str.replace(/_/g, ' ').replace(/\b\w/g, (l) => l.toUpperCase()) |
| 118 | } |
| 119 | |
| 120 | return { |
| 121 | name: TOOL_NAME_OVERRIDES[toolName] ?? capitalizeWords(toolName), |
no outgoing calls
no test coverage detected