8 lines
159 B
JavaScript
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();
|