process of vueification
This commit is contained in:
12
src/modules/common.js
Normal file
12
src/modules/common.js
Normal file
@ -0,0 +1,12 @@
|
||||
function getRandomInt(min, max) {
|
||||
const minVal = Math.ceil(min);
|
||||
const maxVal = Math.floor(max);
|
||||
// The maximum is exclusive and the minimum is inclusive
|
||||
return Math.floor(Math.random() * (maxVal - minVal) + minVal);
|
||||
}
|
||||
|
||||
async function sleep(ms) {
|
||||
await new Promise((resolve) => setTimeout(resolve, ms));
|
||||
}
|
||||
|
||||
export { getRandomInt, sleep };
|
||||
Reference in New Issue
Block a user