Moe-Counter/utils/index.js

9 lines
196 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)]
},
2024-10-30 07:46:17 +00:00
toFixed: (num, digits = 2) => {
return parseFloat(Number(num).toFixed(digits))
}
2024-10-20 00:29:58 +00:00
}