ship-gis/node_modules/underscore/cjs/shuffle.js
2026-01-22 09:14:01 +09:00

9 lines
148 B
JavaScript

var sample = require('./sample.js');
// Shuffle a collection.
function shuffle(obj) {
return sample(obj, Infinity);
}
module.exports = shuffle;