Files
setup-helm/node_modules/underscore/cjs/shuffle.js
2022-01-26 17:16:26 -05:00

9 lines
148 B
JavaScript

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