language-learning-app/frontend/src/lib/shuffleArray.ts
wilson a8cd8d8060
Some checks are pending
/ test (push) Waiting to run
feat: [frontend] First implementation of the "Create new adventure"
form.
2026-05-03 22:39:03 +01:00

3 lines
108 B
TypeScript

export function shuffleArray<T>(data: Array<T>): Array<T> {
return data.sort(() => Math.random() - 0.5);
}