strom/samples/join.js

6 lines
120 B
JavaScript
Raw Permalink Normal View History

const Mhysa = require("mhysa");
Mhysa.fromArray(["a", "b", "c"])
.pipe(Mhysa.join(","))
.pipe(process.stdout);