mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 07:17:50 +00:00
16 lines
356 B
JavaScript
16 lines
356 B
JavaScript
import baseRandom from './baseRandom.js'
|
|
|
|
/**
|
|
* A specialized version of `sample` for arrays.
|
|
*
|
|
* @private
|
|
* @param {Array} array The array to sample.
|
|
* @returns {*} Returns the random element.
|
|
*/
|
|
function arraySample(array) {
|
|
const length = array.length
|
|
return length ? array[baseRandom(0, length - 1)] : undefined
|
|
}
|
|
|
|
export default arraySample
|