Код:
Promise.all([ fetch(chatx_server + 'assets/js/jquery-ui.min.js').then(response => response.text()), fetch(chatx_server + 'assets/js/simplebar.js').then(response => response.text()), e_o === 1 ? fetch('https://cdn.jsdelivr.net/npm/emojione@3.1.2/lib/js/emojione.min.js').then(response => response.text()) : null, ]) .then(scripts => { scripts.forEach(script => { if (script) { eval(script); } }); console.log("done"); });