strom/samples/map.js

8 lines
165 B
JavaScript
Raw Normal View History

const strom = require("stromjs");
2018-12-03 05:38:17 +00:00
strom
.fromArray(["a", "b"])
2020-07-04 04:08:31 +00:00
.pipe(strom.map(s => s.toUpperCase()))
.pipe(strom.join(","))
2018-12-03 05:38:17 +00:00
.pipe(process.stdout);