(propName: string, schema: JSONSchema7)
| 230 | } |
| 231 | |
| 232 | function toCSharpPropertyName(propName: string, schema: JSONSchema7): string { |
| 233 | return toPascalCase(isDurationProperty(schema) ? stripDurationMillisecondsSuffix(propName) : propName); |
| 234 | } |
| 235 | |
| 236 | function isSecondsDurationPropertyName(propName: string | undefined): boolean { |
| 237 | return propName !== undefined && /seconds$/i.test(propName); |
no test coverage detected
searching dependent graphs…