I currently have this AJAX request, handled with async/await:
const response = await getJSON('getDomains.php');
Can this library be used when the returned promise is awaited?
Is it something like this?
const response = await trackPromise(getJSON(getDomains.php));