Appearance
Converts string to camel case.
arguments
str: string
returns
string
import { camelCase } from 'func-dash' console.log(camelCase('foo-bar')) // fooBar console.log(camelCase('__FOO_BAR__')) // fooBar