unionWith source npm
_.unionWith([arrays], [comparator])
这个方法类似 _.union
,
除了它接受一个 comparator 调用每一个数组元素的值。 comparator 会传入2个参数:(arrVal, othVal)。
参数
- [arrays] (...Array)
需要处理的数组队列
- [comparator] (Function)
这个函数会处理每一个元素
返回值 (Array)
返回处理好的数组
示例
var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];
var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];
_.unionWith(objects, others, _.isEqual);
// => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }]