Skip to content

kebabCase

将字符串转换为 kebab-case 格式。

使用

ts
import { kebabCase } from 'rattail'

kebabCase('HelloWorld') // return 'hello-world'
kebabCase('fooBar') // return 'foo-bar'

参数

参数类型默认值
valuestring

返回值

类型
string