exstream.js
v0.25.0
Published
 [](https://coveralls.io/github/micheletriaca/exstream?branch=maste
Readme
Exstream
yarn add exstream.js
# or
npm install exstream.jsHow to use it
Here is a sync example:
const exs = require('exstream.js');
const res = exs([1, 2, 3])
.reduce((memo, x) => memo + x, 0)
.value()
// res is 6Look at the documentation or see more examples in the test folder.
