mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 02:36:11 +02:00
4 lines
127 B
TypeScript
4 lines
127 B
TypeScript
const randomFromArray = (array: number[]) => array[Math.floor(Math.random() * array.length)];
|
|
|
|
export default randomFromArray;
|