@nathanfaucett/array-map(latest: 0.0.1) creates a new array with the results of calling a provided function on every element in this array.
@nathanfaucett/array-reduce(latest: 0.0.1) applies a function against an accumulator and each value of the array (from left-to-right) to reduce it to a single value.
@nathanfaucett/array-reduce_right(latest: 0.0.1) applies a function against an accumulator and each value of the array (from left-to-right) to reduce it to a single value.
@nathanfaucett/array-some(latest: 0.0.1) tests whether one element in the array pass the test implemented by the provided function.