MCPcopy
hub / github.com/stemkoski/stemkoski.github.com / without

Function without

MathBox/mathbox-bundle.js:40144–40146  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 2

baseDifferenceFunction · 0.85
sliceFunction · 0.85

Tested by

no test coverage detected