UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

26 lines • 670 B
export function getXHRResponse(xhr) { switch (xhr.responseType) { case 'json': { if ('response' in xhr) { return xhr.response; } else { var ieXHR = xhr; return JSON.parse(ieXHR.responseText); } } case 'document': return xhr.responseXML; case 'text': default: { if ('response' in xhr) { return xhr.response; } else { var ieXHR = xhr; return ieXHR.responseText; } } } } //# sourceMappingURL=getXHRResponse.js.map