strom/samples/child.js

8 lines
199 B
JavaScript
Raw Normal View History

const strom = require("stromjs");
const catProcess = require("child_process").exec("grep -o ab");
strom
.fromArray(["a", "b", "c"])
2020-07-04 04:08:31 +00:00
.pipe(strom.child(catProcess))
.pipe(process.stdout);