login/node_modules/underscore/cjs/shuffle.js
2022-12-19 15:48:51 +05:30

8 lines
148 B
JavaScript

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