camel
Convert a string to camel case
357 bytes
Usage
Given a string returns it in camel case format.
import * as import _
_ from 'radashi'
const const camelText: string
camelText = import _
_.function camel(str: string): stringexport camel
Formats the given string in camel case fashion.
camel('green fish blue fish') // => greenFishBlueFish