Files
feedstr.live/node_modules/underscore/cjs/shuffle.js
T
2023-11-25 18:12:47 -05:00

9 lines
148 B
JavaScript

var sample = require('./sample.js');
// Shuffle a collection.
function shuffle(obj) {
return sample(obj, Infinity);
}
module.exports = shuffle;