camel
Convert a string to camel case
357 bytes
since v12.1.0
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): string
Formats the given string in camel case fashion.
camel('green fish blue fish') // => greenFishBlueFish