Skip to content

Instantly share code, notes, and snippets.

@airarm
Last active April 5, 2024 12:16
Show Gist options
  • Save airarm/7e8b64933db752a8d90208103fa3587d to your computer and use it in GitHub Desktop.
Save airarm/7e8b64933db752a8d90208103fa3587d to your computer and use it in GitHub Desktop.
window.fetch = new Proxy(window.fetch, {
apply(actualFetch, that, args) {
const result = Reflect.apply(actualFetch, that, args);
result.then((response) => {
console.log("fetch completed!", args, response);
});
return result;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment