(identifier: string | string[])
| 42 | |
| 43 | /** reformat an identifier to dash case */ |
| 44 | export function dashCase(identifier: string | string[]): string { |
| 45 | return deconstruct(identifier).join('-'); |
| 46 | } |
nothing calls this directly
no test coverage detected