📄 shuffle.js
/home/palash/git/site/node_modules/underscore/modules/shuffle.js
Language: js • Lines: 6
import sample from './sample.js';

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