Skip to content

camelize

将字符串转换为 camelCase 格式。

使用

ts
import { camelize } from 'rattail'

camelize('hello-world') // return 'helloWorld'
camelize('FooBar') // return 'fooBar'

参数

参数类型默认值
valuestring

返回值

类型
string