6 lines
120 B
JavaScript
6 lines
120 B
JavaScript
const Mhysa = require("mhysa");
|
|
|
|
Mhysa.fromArray(["a", "b", "c"])
|
|
.pipe(Mhysa.join(","))
|
|
.pipe(process.stdout);
|