Skip to content

Instantly share code, notes, and snippets.

@allangrds
Created October 26, 2020 20:53
Show Gist options
  • Save allangrds/8886975de7d7427f29f1b4e4653e5307 to your computer and use it in GitHub Desktop.
Save allangrds/8886975de7d7427f29f1b4e4653e5307 to your computer and use it in GitHub Desktop.
fetch = (originalFetch => {
return (...arguments) => {
const result = originalFetch.apply(this, arguments);
return result.then(console.log('A requisição foi enviada'));
};
})(fetch);
fetch('https://api.github.com/orgs/axios')
.then(response => response.json())
.then(data => {
console.log(data)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment