1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 18:56:29 +02:00
Files
csslayout/utils/randomFromArray.ts
2021-09-27 23:14:35 +07:00

4 lines
114 B
TypeScript

export function randomFromArray<T>(array: T[]): T {
return array[Math.floor(Math.random() * array.length)];
}