shuffle.js 133 Bytes Raw Blame History Permalink 1 2 3 4 5 6 import sample from './sample.js'; // Shuffle a collection. export default function shuffle(obj) { return sample(obj, Infinity); }