time-to-botec/squiggle/node_modules/@stdlib/string/constantcase/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

24 lines
400 B
Plaintext

{{alias}}( str )
Converts a string to constant case.
Parameters
----------
str: string
Input string.
Returns
-------
out: string
Constant-cased string.
Examples
--------
> var out = {{alias}}( 'Hello World!' )
'HELLO_WORLD'
> out = {{alias}}( 'I am a tiny little teapot' )
'I_AM_A_TINY_LITTLE_TEAPOT'
See Also
--------