Files
uno-online/UNO-Backend/src/util/shuffle.ts

3 lines
79 B
TypeScript

export function shuffle(array) {
array.sort(() => Math.random() - 0.5);
}