Skip to content

Instantly share code, notes, and snippets.

@lkLeonov
Created December 7, 2016 16:02
Show Gist options
  • Save lkLeonov/71e3f222bff6f4f5180fab863b142b5f to your computer and use it in GitHub Desktop.
Save lkLeonov/71e3f222bff6f4f5180fab863b142b5f to your computer and use it in GitHub Desktop.
function xhr(xhrMethodName, appendedFunc) {
(function(xhrMethod) {
XMLHttpRequest.prototype[xhrMethodName] = function(data) {
appendedFunc(data);
xhrMethod.call(this.data);
};
})(XMLHttpRequest.prototype[xhrMethodName]);
}
// xhr('send', function(d) {console.log(d)});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment