UNPKG

httpsnippet

Version:

HTTP Request snippet generator for *most* languages

12 lines (11 loc) 301 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('PROPFIND', 'http://mockbin.com/har'); xhr.send(data);