* Creates an array excluding all values of the provided arrays using strict * equality for comparisons, i.e. `===`. * * @static * @memberOf _ * @category Arrays * @param {Array} array The array to process. * @param {...Array} [values] The arrays of values to exclud
(array)
| 39273 | * // => [1, 3, 4] |
| 39274 | */ |
| 39275 | function difference(array) { |
| 39276 | return baseDifference(array, baseFlatten(arguments, true, true, 1)); |
| 39277 | } |
| 39278 | |
| 39279 | /** |
| 39280 | * This method is like `_.find` except that it returns the index of the first |
nothing calls this directly
no test coverage detected