Skip to content

dasherize

Преобразует строку в kebab-case.

dasherize

Сигнатура

typescript
function dasherize(str: string): string

Примеры

typescript
import { dasherize } from 'strio'

dasherize('helloWorld')
// "hello-world"

dasherize('HelloWorld')
// "hello-world"

Связанные функции

Смотрите также

Выпущено под лицензией MIT.