• Formats the given string in camel case fashion

    camel('hello world') -> 'helloWorld' camel('va va-VOOM') -> 'vaVaVoom' camel('helloWorld') -> 'helloWorld'

    Parameters

    • str: string

    Returns string