We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d3407e commit 1f6b529Copy full SHA for 1f6b529
lib/request.js
@@ -22,6 +22,9 @@ var Request = module.exports = function (xhr, params) {
22
try { xhr.withCredentials = params.withCredentials }
23
catch (e) {}
24
25
+ if (params.responseType) try { xhr.responseType = params.responseType }
26
+ catch (e) {}
27
+
28
xhr.open(
29
params.method || 'GET',
30
self.uri,
0 commit comments