Hello @TypeCtrl can i use your script on js? im looking to improve my script from cloudscraper to your to bypass uam ```js function send_req() { let proxy = proxies[Math.floor(Math.random() * proxies.length)]; proxy = new HttpsProxyAgent('http://' + proxy); return new Promise((resolve, reject) => { cloudscraper.get(site, { cloudflareRetry: 10 }) .then(response => { resolve(response); }) .catch(error => { return reject(error); let obj_v = proxies.indexOf(proxy); proxies.splice(obj_v, 1); }); }); } setInterval(() => { send_req(); });``` how can do it
Hello @TypeCtrl can i use your script on js? im looking to improve my script from cloudscraper to your to bypass uam