mirror of
https://github.com/20kaushik02/spotify-manager.git
synced 2025-12-06 06:44:07 +00:00
4 lines
172 B
JavaScript
4 lines
172 B
JavaScript
export const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
|
|
|
|
export const randomBool = (chance_of_failure = 0.25) => Math.random() < chance_of_failure;
|