Checks if a string follows title case.
is_title(x:string) -> boolDescription
Section titled “Description”The is_title function returns true if x is in title case and false
otherwise.
Examples
Section titled “Examples”Check if a string is in title case
Section titled “Check if a string is in title case”from {x: "Hello World".is_title()}{x: true}