mirror of
https://github.com/journey-ad/Moe-Counter.git
synced 2024-11-24 07:40:11 +01:00
9 lines
196 B
JavaScript
9 lines
196 B
JavaScript
module.exports = {
|
|
randomArray: (arr) => {
|
|
return arr[Math.floor(Math.random() * arr.length)]
|
|
},
|
|
toFixed: (num, digits = 2) => {
|
|
return parseFloat(Number(num).toFixed(digits))
|
|
}
|
|
}
|