mirror of
https://github.com/journey-ad/Moe-Counter.git
synced 2025-02-25 06:25:57 +01:00
6 lines
107 B
JavaScript
6 lines
107 B
JavaScript
|
module.exports = {
|
||
|
randomArray: (arr) => {
|
||
|
return arr[Math.floor(Math.random() * arr.length)]
|
||
|
},
|
||
|
}
|