(existing: unknown, extra: string)
| 281 | } |
| 282 | |
| 283 | function appendDescription(existing: unknown, extra: string): string { |
| 284 | if (typeof existing !== 'string' || existing.length === 0) return extra; |
| 285 | return `${existing} ${extra}`; |
| 286 | } |
| 287 | |
| 288 | function replacePathParamName( |
| 289 | container: Record<string, unknown>, |
no outgoing calls
no test coverage detected