Spaces:
Paused
Paused
File size: 225 Bytes
5b3c62d |
1 2 3 4 5 6 7 8 |
export function randomShuffle<T>(array: T[]): T[] {
for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[array[i], array[j]] = [array[j], array[i]];
}
return array
}; |