to_title
Converts a string to title case.
to_title(x:string) -> string
Description
Section titled “Description”The to_title
function converts all words in x
to title case.
Examples
Section titled “Examples”Convert a string to title case
Section titled “Convert a string to title case”from {x: "hello world".to_title()}
{x: "Hello World"}