Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
474 B
Plaintext
Raw Permalink Normal View History

{
"name": "title",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["String"],
"description": "Converts all words of a string to title case (all words lower case with leading capital letter).",
2022-01-13 08:56:17 -05:00
"arguments": [{
"arg": "string",
"description": "the string to convert to title case"
}],
"examples": [{
"expression": "title('hello WOrld')",
"returns": "'Hello World'"
}],
"tags": ["letter", "words", "lower", "converts", "leading", "capital", "title", "case"]
}