azure-setup-helm/node_modules/underscore/modules/shuffle.js
2022-01-26 21:54:27 +00:00

6 lines
133 B
JavaScript

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