Files
feedstr.live/node_modules/underscore/modules/shuffle.js
T
2023-11-25 18:12:47 -05:00

7 lines
133 B
JavaScript

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