Add unionWith, unionBy

This commit is contained in:
Angelos Chalaris
2018-01-24 12:19:41 +02:00
parent 6db7c12cbc
commit 57de0796f2
3 changed files with 36 additions and 0 deletions

16
snippets/unionWith.md Normal file
View File

@ -0,0 +1,16 @@
### unionWith
Returns every element that exists in any of the two arrays once, using a provided comparator function.
Create a `Set` with all values of `a` and values in `b` for which the comparator finds no matches in `a`, using `Array.findIndex()`.
```js
const unionWith = (a, b, comp) =>
Array.from(
new Set([...a, ...b.filter(x => a.findIndex(y => comp(x, y)) === -1)])
);
```
```js
unionWith([1, 1.2, 1.5, 3, 0], [1.9, 3, 0, 3.9], (a, b) => Math.round(a) === Math.round(b)); // [1, 1.2, 1.5, 3, 0, 3.9]
```