The incoming elements are arrays, and send out each element of the array 1 by one.
pipe( itr8FromArray([ [1, 2], [3, 4], [5, 6] ]), flatten(), // => [ 1, 2, 3, 4, 5, 6 ] );
Generated using TypeDoc
The incoming elements are arrays, and send out each element of the array 1 by one.
Example