Remove references to _.

This commit is contained in:
John-David Dalton
2017-01-09 17:38:33 -08:00
parent 65654f8f9e
commit 77cc37ba49
410 changed files with 875 additions and 1157 deletions

5
xor.js
View File

@@ -9,15 +9,14 @@ import isArrayLikeObject from './isArrayLikeObject.js';
* they occur in the arrays.
*
* @static
* @memberOf _
* @since 2.4.0
* @category Array
* @param {...Array} [arrays] The arrays to inspect.
* @returns {Array} Returns the new array of filtered values.
* @see _.difference, _.without
* @see difference, without
* @example
*
* _.xor([2, 1], [2, 3]);
* xor([2, 1], [2, 3]);
* // => [1, 3]
*/
function xor(...arrays) {