On every item, output the total so far.
pipe( itr8FromArray([ 1, 2, 3, 4 ]), runningTotal(), // => [ 1, 3, 6, 10 ] );
Generated using TypeDoc
On every item, output the total so far.
Example