mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 18:56:29 +02:00
7 lines
126 B
TypeScript
7 lines
126 B
TypeScript
const shuffe = (array: number[]) => {
|
|
array.sort(() => Math.random() - 0.5);
|
|
return array;
|
|
};
|
|
|
|
export default shuffe;
|