* Creates an array excluding all provided values using strict equality for * comparisons, i.e. `===`. * * @static * @memberOf _ * @category Arrays * @param {Array} array The array to filter. * @param {...*} [value] The values to exclude. * @returns {Array} Ret
(array)
| 40142 | * // => [2, 3, 4] |
| 40143 | */ |
| 40144 | function without(array) { |
| 40145 | return baseDifference(array, slice(arguments, 1)); |
| 40146 | } |
| 40147 | |
| 40148 | /** |
| 40149 | * Creates an array that is the symmetric difference of the provided arrays. |
nothing calls this directly
no test coverage detected