EG/Cesium-1.132/node_modules/underscore/modules/shuffle.js
2025-08-25 17:48:13 +08:00

7 lines
133 B
JavaScript

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