Files
powerpoint-toolbox/node_modules/underscore/cjs/shuffle.js
T
2025-03-07 19:22:02 +01:00

9 lines
148 B
JavaScript

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