ship-gis/node_modules/underscore/modules/shuffle.js

7 lines
133 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
import sample from './sample.js';
// Shuffle a collection.
export default function shuffle(obj) {
return sample(obj, Infinity);
}