@f/union
v1.0.0
Published
Compute the union of two arrays
Downloads
95
Readme
union
Compute the union of two arrays
Installation
$ npm install @f/union
Usage
var union = require('@f/union')
union([1, 2], [2, 3, 4]) // -> [1, 2, 3, 4]
API
union(a, b, cmp?)
a
- First arrayb
- Second arraycmp
- Optional. Comparator to use to reduce the joined array to its unique values.
Returns: Returns the logical union of the two arrays. That is, each unique element in either array, exactly once.
License
MIT