Skip to content

Instantly share code, notes, and snippets.

@sgml
Created January 17, 2019 21:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sgml/b3d6369ca20a712818b4ffa186a694bf to your computer and use it in GitHub Desktop.
Save sgml/b3d6369ca20a712818b4ffa186a694bf to your computer and use it in GitHub Desktop.
XHR Mock
XMLHttpRequest.prototype.send = function(){return this.toString()}
var foo = new XMLHttpRequest;
foo.open('get','data:text/html,<html><p>hi</p></html>');
foo.send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment