@stdlib/string
Version:
String manipulation functions.
24 lines (18 loc) • 360 B
Plain Text
{{alias}}( str )
Converts a string to camel case.
Parameters
----------
str: string
Input string.
Returns
-------
out: string
Camel-cased string.
Examples
--------
> var out = {{alias}}( 'Hello World!' )
'helloWorld'
> out = {{alias}}( 'beep boop' )
'beepBoop'
See Also
--------