• File: _arraySample.js
  • Full Path: /var/www/nodejs/callDir/node_modules/lodash/_arraySample.js
  • Date Modified: 06/03/2024 5:11 PM
  • File size: 363 bytes
  • MIME-type: text/plain
  • Charset: utf-8
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;