4 lines
108 B
TypeScript
4 lines
108 B
TypeScript
|
|
export function shuffleArray<T>(data: Array<T>): Array<T> {
|
||
|
|
return data.sort(() => Math.random() - 0.5);
|
||
|
|
}
|