7fife-backend/node_modules/underscore/cjs/shuffle.js

9 lines
148 B
JavaScript
Raw Normal View History

2024-03-07 13:01:44 +00:00
var sample = require('./sample.js');
// Shuffle a collection.
function shuffle(obj) {
return sample(obj, Infinity);
}
module.exports = shuffle;