Every line of 'axios response headers' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
21 setHttp(axios) { 22 this.unsetHttp(); 23 24 if (axios) { 25 this.http = axios; 26 this.originalAdapter = axios.defaults.adapter; 27 axios.defaults.adapter = config => this.adapter(config); 28 } 29 return this; 30 }
15 get headers() { 16 return this._response.headers; 17 }