(input: string)
| 10 | } |
| 11 | |
| 12 | export function transformToSlug(input: string): string { |
| 13 | return input.toLowerCase().replace(/\s+/g, "-") |
| 14 | } |
| 15 | |
| 16 | export function transformToName(input: string): string { |
| 17 | return input |
no outgoing calls
no test coverage detected