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

6 lines
133 B
JavaScript
Executable file

import sample from './sample.js';
// Shuffle a collection.
export default function shuffle(obj) {
return sample(obj, Infinity);
}