Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Danilovonline/f18c0e5f5b394000fd52d3f22cff91b2 to your computer and use it in GitHub Desktop.

Select an option

Save Danilovonline/f18c0e5f5b394000fd52d3f22cff91b2 to your computer and use it in GitHub Desktop.
var oldFetch = fetch; // must be on the global scope
fetch = function(url, options) {
var promise = oldFetch(url, options);
//todo: action
console.log(url);
return promise;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment