Javascript – Wait for promise to resolve in not related to it callback
I am developing a Steam bot (but the question is only about JS). I have the following code: const steam = new SteamUser(); // from steam-user library function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); } async function steamAddFriend(user_steam_id)…