(style?: string)
| 44 | /** Returns true when `style` resolves to a known case style; false (with a |
| 45 | * non-empty input) means the author typo'd it and it will be ignored. */ |
| 46 | export function isSupportedCaseStyle(style?: string): boolean { |
| 47 | return normalizeStyle(style) !== null; |
| 48 | } |
| 49 | |
| 50 | function upperFirstLowerRest(word: string): string { |
| 51 | if (!word) return word; |
no test coverage detected