MCPcopy
hub / github.com/stemkoski/stemkoski.github.com / difference

Function difference

MathBox/mathbox-bundle.js:39275–39277  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

baseDifferenceFunction · 0.85
baseFlattenFunction · 0.85

Tested by

no test coverage detected