array-mumu 0.2.0-rc.5

Array tools plugin for the Mumu ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
extend("test")
extend("array")

describe("array:last", () => {
  it("returns the last element", () => {
    expect_equal(array:last([9,8,7]), 7)
    expect_equal(array:last(["x","y"]), "y")
  })
})