UNPKG

357 BJavaScriptView Raw
1import arraySample from './_arraySample.js';
2import values from './values.js';
3
4/**
5 * The base implementation of `_.sample`.
6 *
7 * @private
8 * @param {Array|Object} collection The collection to sample.
9 * @returns {*} Returns the random element.
10 */
11function baseSample(collection) {
12 return arraySample(values(collection));
13}
14
15export default baseSample;