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
{
  "id": "fn-array-flatten",
  "dataComponent": "array",
  "heading": {
    "title": "flatten",
    "badges": ["Array"]
  },
  "synopsis": "Flattens a single level of nested arrays.",
  "codeBlocks": [
    "extend(\"array\")\n\nsput( array:flatten([1, [2, 3], 4]) )\n# => [1,2,3,4]"
  ],
  "notes": [
    "Only flattens one level. For deeper, call multiple times."
  ]
}