mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 10:19:24 +02:00
Improving the get restream credentials
This commit is contained in:
parent
654dda115a
commit
56cb1fd5cb
6058 changed files with 1166166 additions and 1430809 deletions
28
node_modules/lodash/xor.js
generated
vendored
28
node_modules/lodash/xor.js
generated
vendored
|
@ -1,28 +0,0 @@
|
|||
var arrayFilter = require('./_arrayFilter'),
|
||||
baseRest = require('./_baseRest'),
|
||||
baseXor = require('./_baseXor'),
|
||||
isArrayLikeObject = require('./isArrayLikeObject');
|
||||
|
||||
/**
|
||||
* Creates an array of unique values that is the
|
||||
* [symmetric difference](https://en.wikipedia.org/wiki/Symmetric_difference)
|
||||
* of the given arrays. The order of result values is determined by the order
|
||||
* 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
|
||||
* @example
|
||||
*
|
||||
* _.xor([2, 1], [2, 3]);
|
||||
* // => [1, 3]
|
||||
*/
|
||||
var xor = baseRest(function(arrays) {
|
||||
return baseXor(arrayFilter(arrays, isArrayLikeObject));
|
||||
});
|
||||
|
||||
module.exports = xor;
|
Loading…
Add table
Add a link
Reference in a new issue