{"ScriptPreparationCode":null,"TestCases":[{"Name":"Pure XHR","Code":"const xhr = new XMLHttpRequest();\r\nxhr.open(\u0027GET\u0027, \u0027https://www.googleapis.com/discovery/v1/apis\u0027);\r\nxhr.onload = () =\u003E console.log(JSON.parse(xhr.responseText));\r\nxhr.send();","IsDeferred":false},{"Name":"Pure Fetch","Code":"fetch(\u0027https://www.googleapis.com/discovery/v1/apis\u0027)\r\n .then(response =\u003E response.json())\r\n .then(console.log)","IsDeferred":false},{"Name":"Axios","Code":"axios.get(\u0027https://www.googleapis.com/discovery/v1/apis\u0027)\r\n .then((response) =\u003E response.json())\r\n .then(console.log); ","IsDeferred":false},{"Name":"Mande (Fetch)","Code":"Mande.mande(\u0027https://www.googleapis.com/\u0027).get(\u0027discovery/v1/apis\u0027).then(console.log);","IsDeferred":false}]}