deno.land / x / lodash@4.17.19 / npm-package / _arraySampleSize.js

_arraySampleSize.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
var baseClamp = require('./_baseClamp'), copyArray = require('./_copyArray'), shuffleSelf = require('./_shuffleSelf');
/** * 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) { return shuffleSelf(copyArray(array), baseClamp(n, 0, array.length));}
module.exports = arraySampleSize;
lodash

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉