UNPKG

@stdlib/string

Version:

String manipulation functions.

24 lines (18 loc) 362 B
{{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 --------