(value: string)
| 33 | }; |
| 34 | |
| 35 | const toPascalCase = (value: string): string => { |
| 36 | const camel = toCamelCase(value); |
| 37 | return `${camel[0]?.toUpperCase() ?? ""}${camel.slice(1)}`; |
| 38 | }; |
| 39 | |
| 40 | // --------------------------------------------------------------------------- |
| 41 | // Path utilities |
no test coverage detected