Sha256: 09e353d332e22f6d553b5aa90ab1cf8e1a03c190cacc4867b260ff5e63bab91d
Contents?: true
Size: 365 Bytes
Versions: 276
Compression:
Stored size: 365 Bytes
Contents
var copyArray = require('./_copyArray'), shuffleSelf = require('./_shuffleSelf'); /** * A specialized version of `_.shuffle` for arrays. * * @private * @param {Array} array The array to shuffle. * @returns {Array} Returns the new shuffled array. */ function arrayShuffle(array) { return shuffleSelf(copyArray(array)); } module.exports = arrayShuffle;
Version data entries
276 entries across 274 versions & 30 rubygems