[d565449] | 1 | import baseFlatten from './_baseFlatten.js';
|
---|
| 2 | import baseIteratee from './_baseIteratee.js';
|
---|
| 3 | import baseRest from './_baseRest.js';
|
---|
| 4 | import baseUniq from './_baseUniq.js';
|
---|
| 5 | import isArrayLikeObject from './isArrayLikeObject.js';
|
---|
| 6 | import last from './last.js';
|
---|
| 7 |
|
---|
| 8 | /**
|
---|
| 9 | * This method is like `_.union` except that it accepts `iteratee` which is
|
---|
| 10 | * invoked for each element of each `arrays` to generate the criterion by
|
---|
| 11 | * which uniqueness is computed. Result values are chosen from the first
|
---|
| 12 | * array in which the value occurs. The iteratee is invoked with one argument:
|
---|
| 13 | * (value).
|
---|
| 14 | *
|
---|
| 15 | * @static
|
---|
| 16 | * @memberOf _
|
---|
| 17 | * @since 4.0.0
|
---|
| 18 | * @category Array
|
---|
| 19 | * @param {...Array} [arrays] The arrays to inspect.
|
---|
| 20 | * @param {Function} [iteratee=_.identity] The iteratee invoked per element.
|
---|
| 21 | * @returns {Array} Returns the new array of combined values.
|
---|
| 22 | * @example
|
---|
| 23 | *
|
---|
| 24 | * _.unionBy([2.1], [1.2, 2.3], Math.floor);
|
---|
| 25 | * // => [2.1, 1.2]
|
---|
| 26 | *
|
---|
| 27 | * // The `_.property` iteratee shorthand.
|
---|
| 28 | * _.unionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x');
|
---|
| 29 | * // => [{ 'x': 1 }, { 'x': 2 }]
|
---|
| 30 | */
|
---|
| 31 | var unionBy = baseRest(function(arrays) {
|
---|
| 32 | var iteratee = last(arrays);
|
---|
| 33 | if (isArrayLikeObject(iteratee)) {
|
---|
| 34 | iteratee = undefined;
|
---|
| 35 | }
|
---|
| 36 | return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), baseIteratee(iteratee, 2));
|
---|
| 37 | });
|
---|
| 38 |
|
---|
| 39 | export default unionBy;
|
---|