array-concat

Returns a new array comprised of the given array's contents with the given value appended.

inarray

Curried predicate which checks that a value exists in an array. Generally faster than `indexOf` across JS engines.

arraymap

Curried function deriving new array values by applying provided function to each item/index of provided array. Fast and compatible with modern or old browsers.