https://codepen.io/scrappyjs666/pen/wvpXKed
async function kufarCat() { ... }
const fs = require('fs/promises');
...
await fs.writeFile('resultKufarCat.txt', JSON.stringify(data));
...
(async () => {
await Promise.all([doskaCat(), irrCat(), kufarCat()]);
startBot();
})();
await is only valid in async functions and the top level bodies of modules