Files
setup-helm/node_modules/underscore/modules/shuffle.js

7 lines
133 B
JavaScript
Raw Normal View History

2022-06-27 14:17:15 -04:00
import sample from './sample.js';
// Shuffle a collection.
export default function shuffle(obj) {
return sample(obj, Infinity);
}