Files
SponsorBlockServer/src/utils/array.ts
2022-12-23 16:56:27 -05:00

8 lines
234 B
TypeScript

export function shuffleArray<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;
}