Moe-Counter/utils/index.js

6 lines
107 B
JavaScript
Raw Normal View History

2024-10-20 00:29:58 +00:00
module.exports = {
randomArray: (arr) => {
return arr[Math.floor(Math.random() * arr.length)]
},
}