install-nix-action/node_modules/lodash/_baseShuffle.js
Domen Kožar 08403cd828
v5
2019-11-13 17:14:48 +01:00

15 lines
371 B
JavaScript

var shuffleSelf = require('./_shuffleSelf'),
values = require('./values');
/**
* The base implementation of `_.shuffle`.
*
* @private
* @param {Array|Object} collection The collection to shuffle.
* @returns {Array} Returns the new shuffled array.
*/
function baseShuffle(collection) {
return shuffleSelf(values(collection));
}
module.exports = baseShuffle;