mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 22:47:50 +00:00
19 lines
507 B
JavaScript
19 lines
507 B
JavaScript
define(['./_arrayShuffle', './_baseClamp'], function(arrayShuffle, baseClamp) {
|
|
|
|
/**
|
|
* A specialized version of `_.sampleSize` for arrays.
|
|
*
|
|
* @private
|
|
* @param {Array} array The array to sample.
|
|
* @param {number} n The number of elements to sample.
|
|
* @returns {Array} Returns the random elements.
|
|
*/
|
|
function arraySampleSize(array, n) {
|
|
var result = arrayShuffle(array);
|
|
result.length = baseClamp(n, 0, result.length);
|
|
return result;
|
|
}
|
|
|
|
return arraySampleSize;
|
|
});
|