(input: string)
| 149 | * e.g. "some-example-string" returns a "SOME EXAMPLE STRING". |
| 150 | */ |
| 151 | export function kebabToScreamingSpaceCase(input: string): string { |
| 152 | return input.split("-").join(" ").toUpperCase(); |
| 153 | } |
| 154 | |
| 155 | /** |
| 156 | * e.g. "some_example_string" returns a "someExampleString". |
no test coverage detected