mirror of
https://github.com/actions/setup-python.git
synced 2025-07-19 08:18:21 +02:00
Clean up node_modules
This commit is contained in:
parent
b581dd4017
commit
145e800d1f
7184 changed files with 11271 additions and 1877650 deletions
24
node_modules/lodash/sample.js
generated
vendored
24
node_modules/lodash/sample.js
generated
vendored
|
@ -1,24 +0,0 @@
|
|||
var arraySample = require('./_arraySample'),
|
||||
baseSample = require('./_baseSample'),
|
||||
isArray = require('./isArray');
|
||||
|
||||
/**
|
||||
* Gets a random element from `collection`.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
* @since 2.0.0
|
||||
* @category Collection
|
||||
* @param {Array|Object} collection The collection to sample.
|
||||
* @returns {*} Returns the random element.
|
||||
* @example
|
||||
*
|
||||
* _.sample([1, 2, 3, 4]);
|
||||
* // => 2
|
||||
*/
|
||||
function sample(collection) {
|
||||
var func = isArray(collection) ? arraySample : baseSample;
|
||||
return func(collection);
|
||||
}
|
||||
|
||||
module.exports = sample;
|
Loading…
Add table
Add a link
Reference in a new issue