firefish/packages/client/src/scripts/shuffle.ts

23 lines
500 B
TypeScript
Raw Normal View History

2023-07-20 04:17:05 +09:00
/**
* ()
*/
export function shuffle<T extends any[]>(array: T): T {
2023-09-04 17:47:24 +09:00
let currentIndex = array.length,
randomIndex;
2023-07-20 04:17:05 +09:00
// While there remain elements to shuffle.
while (currentIndex !== 0) {
// Pick a remaining element.
randomIndex = Math.floor(Math.random() * currentIndex);
currentIndex--;
// And swap it with the current element.
[array[currentIndex], array[randomIndex]] = [
array[randomIndex],
array[currentIndex],
];
}
return array;
}