jbilcke-hf's picture
jbilcke-hf HF staff
up
c1039c9
raw
history blame
243 Bytes
export function shuffleArray<T>(items: T[]): T[] {
for (let i = items.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
const temp = items[i];
items[i] = items[j];
items[j] = temp;
}
return items
}