lbry-desktop/ui/util/shuffle-array.js
2019-11-11 13:27:29 -05:00

4 lines
82 B
JavaScript

export function shuffleArray(array) {
return Math.round(Math.random()) - 0.5;
}