strom/samples/last.js
2018-12-04 01:30:38 -05:00

8 lines
159 B
JavaScript

const Mhysa = require("mhysa");
let f = async () => {
const source = Mhysa.fromArray(["a", "b", "c"]);
console.log(await Mhysa.last(source));
};
f();