Last active
December 13, 2017 17:00
-
-
Save olivmonnier/c4d05d1678426ad69992e7393869bbda to your computer and use it in GitHub Desktop.
Intercept xhr
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function(open) { | |
| XMLHttpRequest.prototype.open = function() { | |
| this.addEventListener("readystatechange", function() { | |
| console.log(this.readyState); | |
| }, false); | |
| open.apply(this, arguments); | |
| }; | |
| })(XMLHttpRequest.prototype.open); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment