$.camelCase
$.camelCase(string) ⇒ string
Turn a dasherized string into "camel case". Doesn't affect already camel-cased strings.
$.camelCase('hello-there') //=> "helloThere"
$.camelCase('helloThere') //=> "helloThere"
$.camelCase(string) ⇒ string
Turn a dasherized string into "camel case". Doesn't affect already camel-cased strings.
$.camelCase('hello-there') //=> "helloThere"
$.camelCase('helloThere') //=> "helloThere"