(input: string)
| 217 | } |
| 218 | |
| 219 | function stripIdSuffix(input: string): string { |
| 220 | return input.replace(/Id$/, ""); |
| 221 | } |
| 222 | |
| 223 | function convertCamelCaseToTitleCase(input: string): string { |
| 224 | return input |
no outgoing calls
no test coverage detected