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

11 lines
157 B
JavaScript

define(['./sample'], function (sample) {
// Shuffle a collection.
function shuffle(obj) {
return sample(obj, Infinity);
}
return shuffle;
});