Files
lodash/_baseSample.js
John-David Dalton ab95e7dde7 Bump to v4.16.2.
2016-09-25 13:40:14 -07:00

16 lines
357 B
JavaScript

import arraySample from './_arraySample.js';
import values from './values.js';
/**
* The base implementation of `_.sample`.
*
* @private
* @param {Array|Object} collection The collection to sample.
* @returns {*} Returns the random element.
*/
function baseSample(collection) {
return arraySample(values(collection));
}
export default baseSample;