asyncfunctionfcn_benchmarkAjax(e=1,n={},t=null,o={},r="get"){lets=0;console.log(`Starting benchmark with ${e} AJAX requests...`);for(letc=0;c<e;c++){conste=performance.now();try{"get"===r?awaitFcnUtils.aGet(n,t,o):awaitFcnUtils.aPost(n,t,o),s+=performance.now()-e}catch(e){console.error("Error during AJAX request:",e)}}constc=s/e;returnconsole.log(`Finished benchmarking. Average AJAX response time over ${e} requests: ${c.toFixed(2)} ms`),c}functionfcn_printAjaxResponse(e,n="get"){"get"===n?FcnUtils.aGet(e).then((e=>{console.log(e)})):FcnUtils.aPost(e).then((e=>{console.log(e)}))}