Add Prettier

This commit is contained in:
Gregory Schier
2018-06-25 13:42:50 -04:00
parent 0ad7607ac3
commit 4901f03041
467 changed files with 16125 additions and 12289 deletions

View File

@@ -3,12 +3,12 @@ var data = null;
var xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener("readystatechange", function () {
xhr.addEventListener('readystatechange', function() {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open("GET", "https://mockbin.com/har");
xhr.open('GET', 'https://mockbin.com/har');
xhr.send(data);