Skip to content

is_title

Checks if a string follows title case.

is_title(x:string) -> bool

The is_title function returns true if x is in title case and false otherwise.

from {x: "Hello World".is_title()}
{x: true}

to_title