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

11 lines
157 B
JavaScript
Raw Normal View History

2024-03-07 13:01:44 +00:00
define(['./sample'], function (sample) {
// Shuffle a collection.
function shuffle(obj) {
return sample(obj, Infinity);
}
return shuffle;
});