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
{
  "id": "fn-string-trim",
  "dataComponent": "string",
  "heading": {
    "title": "trim",
    "badges": ["String"]
  },
  "synopsis": "Removes leading and trailing whitespace from a single string.",
  "codeBlocks": [
    "extend(\"string\")\n\nsput( string:trim(\"   hello world  \") )\n# => \"hello world\""
  ],
  "notes": [
    "Takes exactly one string argument.",
    "Returns the trimmed string.",
    "If not a single string, raises an error."
  ]
}