Files
web-apps/vendor/underscore/modules/shuffle.js
2024-03-06 21:54:19 +05:00

7 lines
133 B
JavaScript

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