login/node_modules/underscore/cjs/shuffle.js
2024-01-17 19:45:14 +08:00

8 lines
148 B
JavaScript

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