1
0
mirror of https://github.com/journey-ad/Moe-Counter.git synced 2024-11-24 07:40:11 +01:00
Moe-Counter/utils/index.js
2024-10-20 08:53:07 +08:00

6 lines
107 B
JavaScript

module.exports = {
randomArray: (arr) => {
return arr[Math.floor(Math.random() * arr.length)]
},
}