2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-14 18:42:33 +03:00

Fixing bug with custom intances and global defaults

This commit is contained in:
Nick Uraltsev
2016-11-26 18:17:21 -08:00
parent 5faebabcd8
commit 6d0e19343a
3 changed files with 30 additions and 6 deletions
+3 -3
View File
@@ -10,10 +10,10 @@ var combineURLs = require('./../helpers/combineURLs');
/**
* Create a new instance of Axios
*
* @param {Object} defaultConfig The default config for the instance
* @param {Object} instanceConfig The default config for the instance
*/
function Axios(defaultConfig) {
this.defaults = utils.merge(defaults, defaultConfig);
function Axios(instanceConfig) {
this.defaults = instanceConfig;
this.interceptors = {
request: new InterceptorManager(),
response: new InterceptorManager()