time-to-botec/squiggle/node_modules/@stdlib/string/pascalcase/docs/repl.txt

24 lines
362 B
Plaintext
Raw Normal View History

{{alias}}( str )
Converts a string to Pascal case.
Parameters
----------
str: string
Input string.
Returns
-------
out: string
Pascal-cased string.
Examples
--------
> var out = {{alias}}( 'Hello World!' )
'HelloWorld'
> out = {{alias}}( 'beep boop' )
'BeepBoop'
See Also
--------