Function: camelCase()
ts
function camelCase(str): string;Defined in: index.ts:19
Converts a dash- or space-separated string to camelCase.
Not using regexp for better performance, because this function is used in parser.
Parameters
| Parameter | Type |
|---|---|
|
|
Returns
string

