Files
conference-room-booking-system/frontend/node_modules/underscore/cjs/shuffle.js
2025-08-20 21:01:11 -04:00

9 lines
148 B
JavaScript

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