1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 18:56:29 +02:00
Files
csslayout/client/helpers/shuffe.ts
2019-11-24 23:09:38 +07:00

7 lines
116 B
TypeScript

const shuffe = (array) => {
array.sort(() => Math.random() - 0.5);
return array;
};
export default shuffe;