mumu 0.10.0

Lava Mumu is a language for those in the now and that know
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "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)."
  ]
}