简体中文
Appearance
将字符串转换为 camelCase 格式。
camelCase
import { camelize } from 'rattail' camelize('hello-world') // return 'helloWorld' camelize('FooBar') // return 'fooBar'
value
string