strom/samples/split.js

8 lines
154 B
JavaScript
Raw Normal View History

const strom = require("stromjs");
strom
.fromArray(["a,b", "c,d"])
2020-07-04 04:08:31 +00:00
.pipe(strom.split(","))
.pipe(strom.join("|"))
.pipe(process.stdout);