mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-11 11:27:50 +00:00
Remove references to _.
This commit is contained in:
5
xor.js
5
xor.js
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user