Every line of 'axios cdn' 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.
39 function isAxiosInstance(axios) { 40 return axios && typeof axios.interceptors === 'object' 41 }
13 function Axios(instanceConfig) { 14 this.defaults = instanceConfig; 15 this.interceptors = { 16 request: new InterceptorManager(), 17 response: new InterceptorManager() 18 }; 19 }