UNPKG

@hoppscotch/httpsnippet

Version:

HTTP Request snippet generator for *most* languages

12 lines 330 B
"use strict"; var data = null; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener('readystatechange', function () { if (this.readyState === this.DONE) { console.log(this.responseText); } }); xhr.open('GET', 'https://mockbin.com/har'); xhr.send(data); //# sourceMappingURL=https.js.map