{
"id": "fn-string-lower",
"dataComponent": "string",
"heading": {
"title": "lower",
"badges": [
"String"
]
},
"synopsis": "Converts a single string to lowercase.",
"codeBlocks": [
"extend(\"string\")\\n\\nsput( string:lower(\"Hello, WORLD!\") )\\n// => \"hello, world!\"\\n\\n# If you pass something other than a single string, it raises an error."
],
"notes": [
"The function takes exactly one string argument and returns its lowercase equivalent.",
"It will fail if given something that is not a single string (like an array or keyed array)."
]
}