English
Appearance
Convert a string to camelCase.
camelCase
import { camelize } from 'rattail' camelize('hello-world') // return 'helloWorld' camelize('FooBar') // return 'fooBar'
value
string