mirror of
https://github.com/20kaushik02/spotify-manager.git
synced 2025-12-06 09:24:07 +00:00
8 lines
201 B
JavaScript
8 lines
201 B
JavaScript
const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
|
|
|
|
const randomBool = (chance_of_failure = 0.25) => Math.random() < chance_of_failure;
|
|
|
|
module.exports = {
|
|
sleep, randomBool
|
|
};
|