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 }
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code
13 function Axios(instanceConfig) { 14 this.defaults = instanceConfig; 15 this.interceptors = { 16 request: new InterceptorManager(), 17 response: new InterceptorManager() 18 }; 19 }