(propName: string | undefined)
| 234 | } |
| 235 | |
| 236 | function isSecondsDurationPropertyName(propName: string | undefined): boolean { |
| 237 | return propName !== undefined && /seconds$/i.test(propName); |
| 238 | } |
| 239 | |
| 240 | function typeToClassName(typeName: string): string { |
| 241 | return splitCSharpIdentifierParts(typeName).map(toPascalCasePart).join(""); |
no outgoing calls
no test coverage detected
searching dependent graphs…