source: imaps-frontend/node_modules/lodash-es/_arraySample.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 361 bytes
RevLine 
[d565449]1import baseRandom from './_baseRandom.js';
2
3/**
4 * A specialized version of `_.sample` for arrays.
5 *
6 * @private
7 * @param {Array} array The array to sample.
8 * @returns {*} Returns the random element.
9 */
10function arraySample(array) {
11 var length = array.length;
12 return length ? array[baseRandom(0, length - 1)] : undefined;
13}
14
15export default arraySample;
Note: See TracBrowser for help on using the repository browser.