Files
lodash/_arraySample.js
John-David Dalton 94ac73824f Bump to v4.16.0.
2016-09-17 22:28:43 -07:00

17 lines
404 B
JavaScript

import baseRandom from './_baseRandom.js';
/**
* A specialized version of `_.sample` for arrays without support for iteratee
* shorthands.
*
* @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;
}
export default arraySample;