mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 07:47:49 +00:00
Bump to v4.16.0.
This commit is contained in:
18
_arraySampleSize.js
Normal file
18
_arraySampleSize.js
Normal file
@@ -0,0 +1,18 @@
|
||||
import arrayShuffle from './_arrayShuffle.js';
|
||||
import baseClamp from './_baseClamp.js';
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
|
||||
export default arraySampleSize;
|
||||
Reference in New Issue
Block a user