time-to-botec/js/node_modules/@stdlib/string/camelcase/docs/repl.txt

24 lines
360 B
Plaintext
Raw Normal View History

{{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
--------