setup-maven-cached/node_modules/underscore/modules/shuffle.js

7 lines
133 B
JavaScript
Raw Permalink Normal View History

2022-06-28 16:39:30 +08:00
import sample from './sample.js';
// Shuffle a collection.
export default function shuffle(obj) {
return sample(obj, Infinity);
}