You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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));
The text was updated successfully, but these errors were encountered:
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));
The text was updated successfully, but these errors were encountered: