FLUJOS/VISUALIZACION/node_modules/underscore/cjs/shuffle.js
2025-11-07 00:06:12 +01:00

8 lines
148 B
JavaScript
Executable file

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