* Creates an array of unique values, in order, of the provided arrays using * strict equality for comparisons, i.e. `===`. * * @static * @memberOf _ * @category Arrays * @param {...Array} [array] The arrays to inspect. * @returns {Array} Returns an array of combine
()
| 40066 | * // => [1, 2, 3, 5, 4] |
| 40067 | */ |
| 40068 | function union() { |
| 40069 | return baseUniq(baseFlatten(arguments, true, true)); |
| 40070 | } |
| 40071 | |
| 40072 | /** |
| 40073 | * Creates a duplicate-value-free version of an array using strict equality |
nothing calls this directly
no test coverage detected