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-ends_with",
  "dataComponent": "string",
  "heading": {
    "title": "ends_with",
    "badges": ["String", "PARTIAL"]
  },
  "synopsis": "Checks if a string ends with a given substring. Partial/placeholder usage supported.",
  "codeBlocks": [
    "extend(\"string\")\n\nsput( string:ends_with(\"lo\", \"hello\") )\n# => true"
  ],
  "notes": [
    "Arguments: substring, string.",
    "Returns Bool.",
    "Partial and _ supported."
  ]
}