Add npm-package

This commit is contained in:
Mathias Bynens
2020-07-08 19:10:23 +02:00
parent 1b6c282299
commit 2e1c0f22f4
1046 changed files with 40050 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
var baseRandom = require('./_baseRandom');
/**
* A specialized version of `_.sample` for arrays.
*
* @private
* @param {Array} array The array to sample.
* @returns {*} Returns the random element.
*/
function arraySample(array) {
var length = array.length;
return length ? array[baseRandom(0, length - 1)] : undefined;
}
module.exports = arraySample;