Files
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

9 lines
148 B
JavaScript

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