strom/samples/last.js

8 lines
159 B
JavaScript
Raw Normal View History

2018-12-04 06:30:38 +00:00
const Mhysa = require("mhysa");
let f = async () => {
const source = Mhysa.fromArray(["a", "b", "c"]);
console.log(await Mhysa.last(source));
};
f();