| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274 | 
							- (function webpackUniversalModuleDefinition(root, factory) {
 
-     if(typeof exports === 'object' && typeof module === 'object')
 
-         module.exports = factory();
 
-     else if(typeof define === 'function' && define.amd)
 
-         define([], factory);
 
-     else if(typeof exports === 'object')
 
-         exports["axios"] = factory();
 
-     else
 
-         root["axios"] = factory();
 
- })(this, function() {
 
-     return /******/ (function(modules) { // webpackBootstrap
 
-         /******/ 	// The module cache
 
-         /******/ 	var installedModules = {};
 
-         /******/
 
-         /******/ 	// The require function
 
-         /******/ 	function __webpack_require__(moduleId) {
 
-             /******/
 
-             /******/ 		// Check if module is in cache
 
-             /******/ 		if(installedModules[moduleId]) {
 
-                 /******/ 			return installedModules[moduleId].exports;
 
-                 /******/ 		}
 
-             /******/ 		// Create a new module (and put it into the cache)
 
-             /******/ 		var module = installedModules[moduleId] = {
 
-                 /******/ 			i: moduleId,
 
-                 /******/ 			l: false,
 
-                 /******/ 			exports: {}
 
-                 /******/ 		};
 
-             /******/
 
-             /******/ 		// Execute the module function
 
-             /******/ 		modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
 
-             /******/
 
-             /******/ 		// Flag the module as loaded
 
-             /******/ 		module.l = true;
 
-             /******/
 
-             /******/ 		// Return the exports of the module
 
-             /******/ 		return module.exports;
 
-             /******/ 	}
 
-         /******/
 
-         /******/
 
-         /******/ 	// expose the modules object (__webpack_modules__)
 
-         /******/ 	__webpack_require__.m = modules;
 
-         /******/
 
-         /******/ 	// expose the module cache
 
-         /******/ 	__webpack_require__.c = installedModules;
 
-         /******/
 
-         /******/ 	// define getter function for harmony exports
 
-         /******/ 	__webpack_require__.d = function(exports, name, getter) {
 
-             /******/ 		if(!__webpack_require__.o(exports, name)) {
 
-                 /******/ 			Object.defineProperty(exports, name, { enumerable: true, get: getter });
 
-                 /******/ 		}
 
-             /******/ 	};
 
-         /******/
 
-         /******/ 	// define __esModule on exports
 
-         /******/ 	__webpack_require__.r = function(exports) {
 
-             /******/ 		if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
 
-                 /******/ 			Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
 
-                 /******/ 		}
 
-             /******/ 		Object.defineProperty(exports, '__esModule', { value: true });
 
-             /******/ 	};
 
-         /******/
 
-         /******/ 	// create a fake namespace object
 
-         /******/ 	// mode & 1: value is a module id, require it
 
-         /******/ 	// mode & 2: merge all properties of value into the ns
 
-         /******/ 	// mode & 4: return value when already ns object
 
-         /******/ 	// mode & 8|1: behave like require
 
-         /******/ 	__webpack_require__.t = function(value, mode) {
 
-             /******/ 		if(mode & 1) value = __webpack_require__(value);
 
-             /******/ 		if(mode & 8) return value;
 
-             /******/ 		if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
 
-             /******/ 		var ns = Object.create(null);
 
-             /******/ 		__webpack_require__.r(ns);
 
-             /******/ 		Object.defineProperty(ns, 'default', { enumerable: true, value: value });
 
-             /******/ 		if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
 
-             /******/ 		return ns;
 
-             /******/ 	};
 
-         /******/
 
-         /******/ 	// getDefaultExport function for compatibility with non-harmony modules
 
-         /******/ 	__webpack_require__.n = function(module) {
 
-             /******/ 		var getter = module && module.__esModule ?
 
-                 /******/ 			function getDefault() { return module['default']; } :
 
-                 /******/ 			function getModuleExports() { return module; };
 
-             /******/ 		__webpack_require__.d(getter, 'a', getter);
 
-             /******/ 		return getter;
 
-             /******/ 	};
 
-         /******/
 
-         /******/ 	// Object.prototype.hasOwnProperty.call
 
-         /******/ 	__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
 
-         /******/
 
-         /******/ 	// __webpack_public_path__
 
-         /******/ 	__webpack_require__.p = "";
 
-         /******/
 
-         /******/
 
-         /******/ 	// Load entry module and return exports
 
-         /******/ 	return __webpack_require__(__webpack_require__.s = "./index.js");
 
-         /******/ })
 
-     /************************************************************************/
 
-     /******/ ({
 
-         /***/ "./index.js":
 
-         /*!******************!*\
 
-           !*** ./index.js ***!
 
-           \******************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             module.exports = __webpack_require__(/*! ./lib/axios */ "./lib/axios.js");
 
-             /***/ }),
 
-         /***/ "./lib/adapters/xhr.js":
 
-         /*!*****************************!*\
 
-           !*** ./lib/adapters/xhr.js ***!
 
-           \*****************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var utils = __webpack_require__(/*! ./../utils */ "./lib/utils.js");
 
-             var settle = __webpack_require__(/*! ./../core/settle */ "./lib/core/settle.js");
 
-             var cookies = __webpack_require__(/*! ./../helpers/cookies */ "./lib/helpers/cookies.js");
 
-             var buildURL = __webpack_require__(/*! ./../helpers/buildURL */ "./lib/helpers/buildURL.js");
 
-             var buildFullPath = __webpack_require__(/*! ../core/buildFullPath */ "./lib/core/buildFullPath.js");
 
-             var parseHeaders = __webpack_require__(/*! ./../helpers/parseHeaders */ "./lib/helpers/parseHeaders.js");
 
-             var isURLSameOrigin = __webpack_require__(/*! ./../helpers/isURLSameOrigin */ "./lib/helpers/isURLSameOrigin.js");
 
-             var createError = __webpack_require__(/*! ../core/createError */ "./lib/core/createError.js");
 
-             var defaults = __webpack_require__(/*! ../defaults */ "./lib/defaults.js");
 
-             var Cancel = __webpack_require__(/*! ../cancel/Cancel */ "./lib/cancel/Cancel.js");
 
-             module.exports = function xhrAdapter(config) {
 
-                 return new Promise(function dispatchXhrRequest(resolve, reject) {
 
-                     var requestData = config.data;
 
-                     var requestHeaders = config.headers;
 
-                     var responseType = config.responseType;
 
-                     var onCanceled;
 
-                     function done() {
 
-                         if (config.cancelToken) {
 
-                             config.cancelToken.unsubscribe(onCanceled);
 
-                         }
 
-                         if (config.signal) {
 
-                             config.signal.removeEventListener('abort', onCanceled);
 
-                         }
 
-                     }
 
-                     if (utils.isFormData(requestData)) {
 
-                         delete requestHeaders['Content-Type']; // Let the browser set it
 
-                     }
 
-                     var request = new XMLHttpRequest();
 
-                     // HTTP basic authentication
 
-                     if (config.auth) {
 
-                         var username = config.auth.username || '';
 
-                         var password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';
 
-                         requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);
 
-                     }
 
-                     var fullPath = buildFullPath(config.baseURL, config.url);
 
-                     request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);
 
-                     // Set the request timeout in MS
 
-                     request.timeout = config.timeout;
 
-                     function onloadend() {
 
-                         if (!request) {
 
-                             return;
 
-                         }
 
-                         // Prepare the response
 
-                         var responseHeaders = 'getAllResponseHeaders' in request ? parseHeaders(request.getAllResponseHeaders()) : null;
 
-                         var responseData = !responseType || responseType === 'text' ||  responseType === 'json' ?
 
-                             request.responseText : request.response;
 
-                         var response = {
 
-                             data: responseData,
 
-                             status: request.status,
 
-                             statusText: request.statusText,
 
-                             headers: responseHeaders,
 
-                             config: config,
 
-                             request: request
 
-                         };
 
-                         settle(function _resolve(value) {
 
-                             resolve(value);
 
-                             done();
 
-                         }, function _reject(err) {
 
-                             reject(err);
 
-                             done();
 
-                         }, response);
 
-                         // Clean up request
 
-                         request = null;
 
-                     }
 
-                     if ('onloadend' in request) {
 
-                         // Use onloadend if available
 
-                         request.onloadend = onloadend;
 
-                     } else {
 
-                         // Listen for ready state to emulate onloadend
 
-                         request.onreadystatechange = function handleLoad() {
 
-                             if (!request || request.readyState !== 4) {
 
-                                 return;
 
-                             }
 
-                             // The request errored out and we didn't get a response, this will be
 
-                             // handled by onerror instead
 
-                             // With one exception: request that using file: protocol, most browsers
 
-                             // will return status as 0 even though it's a successful request
 
-                             if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {
 
-                                 return;
 
-                             }
 
-                             // readystate handler is calling before onerror or ontimeout handlers,
 
-                             // so we should call onloadend on the next 'tick'
 
-                             setTimeout(onloadend);
 
-                         };
 
-                     }
 
-                     // Handle browser request cancellation (as opposed to a manual cancellation)
 
-                     request.onabort = function handleAbort() {
 
-                         if (!request) {
 
-                             return;
 
-                         }
 
-                         reject(createError('Request aborted', config, 'ECONNABORTED', request));
 
-                         // Clean up request
 
-                         request = null;
 
-                     };
 
-                     // Handle low level network errors
 
-                     request.onerror = function handleError() {
 
-                         // Real errors are hidden from us by the browser
 
-                         // onerror should only fire if it's a network error
 
-                         reject(createError('Network Error', config, null, request));
 
-                         // Clean up request
 
-                         request = null;
 
-                     };
 
-                     // Handle timeout
 
-                     request.ontimeout = function handleTimeout() {
 
-                         var timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded';
 
-                         var transitional = config.transitional || defaults.transitional;
 
-                         if (config.timeoutErrorMessage) {
 
-                             timeoutErrorMessage = config.timeoutErrorMessage;
 
-                         }
 
-                         reject(createError(
 
-                             timeoutErrorMessage,
 
-                             config,
 
-                             transitional.clarifyTimeoutError ? 'ETIMEDOUT' : 'ECONNABORTED',
 
-                             request));
 
-                         // Clean up request
 
-                         request = null;
 
-                     };
 
-                     // Add xsrf header
 
-                     // This is only done if running in a standard browser environment.
 
-                     // Specifically not if we're in a web worker, or react-native.
 
-                     if (utils.isStandardBrowserEnv()) {
 
-                         // Add xsrf header
 
-                         var xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName ?
 
-                             cookies.read(config.xsrfCookieName) :
 
-                             undefined;
 
-                         if (xsrfValue) {
 
-                             requestHeaders[config.xsrfHeaderName] = xsrfValue;
 
-                         }
 
-                     }
 
-                     // Add headers to the request
 
-                     if ('setRequestHeader' in request) {
 
-                         utils.forEach(requestHeaders, function setRequestHeader(val, key) {
 
-                             if (typeof requestData === 'undefined' && key.toLowerCase() === 'content-type') {
 
-                                 // Remove Content-Type if data is undefined
 
-                                 delete requestHeaders[key];
 
-                             } else {
 
-                                 // Otherwise add header to the request
 
-                                 request.setRequestHeader(key, val);
 
-                             }
 
-                         });
 
-                     }
 
-                     // Add withCredentials to request if needed
 
-                     if (!utils.isUndefined(config.withCredentials)) {
 
-                         request.withCredentials = !!config.withCredentials;
 
-                     }
 
-                     // Add responseType to request if needed
 
-                     if (responseType && responseType !== 'json') {
 
-                         request.responseType = config.responseType;
 
-                     }
 
-                     // Handle progress if needed
 
-                     if (typeof config.onDownloadProgress === 'function') {
 
-                         request.addEventListener('progress', config.onDownloadProgress);
 
-                     }
 
-                     // Not all browsers support upload events
 
-                     if (typeof config.onUploadProgress === 'function' && request.upload) {
 
-                         request.upload.addEventListener('progress', config.onUploadProgress);
 
-                     }
 
-                     if (config.cancelToken || config.signal) {
 
-                         // Handle cancellation
 
-                         // eslint-disable-next-line func-names
 
-                         onCanceled = function(cancel) {
 
-                             if (!request) {
 
-                                 return;
 
-                             }
 
-                             reject(!cancel || (cancel && cancel.type) ? new Cancel('canceled') : cancel);
 
-                             request.abort();
 
-                             request = null;
 
-                         };
 
-                         config.cancelToken && config.cancelToken.subscribe(onCanceled);
 
-                         if (config.signal) {
 
-                             config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled);
 
-                         }
 
-                     }
 
-                     if (!requestData) {
 
-                         requestData = null;
 
-                     }
 
-                     // Send the request
 
-                     request.send(requestData);
 
-                 });
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/axios.js":
 
-         /*!**********************!*\
 
-           !*** ./lib/axios.js ***!
 
-           \**********************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var utils = __webpack_require__(/*! ./utils */ "./lib/utils.js");
 
-             var bind = __webpack_require__(/*! ./helpers/bind */ "./lib/helpers/bind.js");
 
-             var Axios = __webpack_require__(/*! ./core/Axios */ "./lib/core/Axios.js");
 
-             var mergeConfig = __webpack_require__(/*! ./core/mergeConfig */ "./lib/core/mergeConfig.js");
 
-             var defaults = __webpack_require__(/*! ./defaults */ "./lib/defaults.js");
 
-             /**
 
-              * Create an instance of Axios
 
-              *
 
-              * @param {Object} defaultConfig The default config for the instance
 
-              * @return {Axios} A new instance of Axios
 
-              */
 
-             function createInstance(defaultConfig) {
 
-                 var context = new Axios(defaultConfig);
 
-                 var instance = bind(Axios.prototype.request, context);
 
-                 // Copy axios.prototype to instance
 
-                 utils.extend(instance, Axios.prototype, context);
 
-                 // Copy context to instance
 
-                 utils.extend(instance, context);
 
-                 // Factory for creating new instances
 
-                 instance.create = function create(instanceConfig) {
 
-                     return createInstance(mergeConfig(defaultConfig, instanceConfig));
 
-                 };
 
-                 return instance;
 
-             }
 
- // Create the default instance to be exported
 
-             var axios = createInstance(defaults);
 
- // Expose Axios class to allow class inheritance
 
-             axios.Axios = Axios;
 
- // Expose Cancel & CancelToken
 
-             axios.Cancel = __webpack_require__(/*! ./cancel/Cancel */ "./lib/cancel/Cancel.js");
 
-             axios.CancelToken = __webpack_require__(/*! ./cancel/CancelToken */ "./lib/cancel/CancelToken.js");
 
-             axios.isCancel = __webpack_require__(/*! ./cancel/isCancel */ "./lib/cancel/isCancel.js");
 
-             axios.VERSION = __webpack_require__(/*! ./env/data */ "./lib/env/data.js").version;
 
- // Expose all/spread
 
-             axios.all = function all(promises) {
 
-                 return Promise.all(promises);
 
-             };
 
-             axios.spread = __webpack_require__(/*! ./helpers/spread */ "./lib/helpers/spread.js");
 
- // Expose isAxiosError
 
-             axios.isAxiosError = __webpack_require__(/*! ./helpers/isAxiosError */ "./lib/helpers/isAxiosError.js");
 
-             module.exports = axios;
 
- // Allow use of default import syntax in TypeScript
 
-             module.exports.default = axios;
 
-             /***/ }),
 
-         /***/ "./lib/cancel/Cancel.js":
 
-         /*!******************************!*\
 
-           !*** ./lib/cancel/Cancel.js ***!
 
-           \******************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             /**
 
-              * A `Cancel` is an object that is thrown when an operation is canceled.
 
-              *
 
-              * @class
 
-              * @param {string=} message The message.
 
-              */
 
-             function Cancel(message) {
 
-                 this.message = message;
 
-             }
 
-             Cancel.prototype.toString = function toString() {
 
-                 return 'Cancel' + (this.message ? ': ' + this.message : '');
 
-             };
 
-             Cancel.prototype.__CANCEL__ = true;
 
-             module.exports = Cancel;
 
-             /***/ }),
 
-         /***/ "./lib/cancel/CancelToken.js":
 
-         /*!***********************************!*\
 
-           !*** ./lib/cancel/CancelToken.js ***!
 
-           \***********************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var Cancel = __webpack_require__(/*! ./Cancel */ "./lib/cancel/Cancel.js");
 
-             /**
 
-              * A `CancelToken` is an object that can be used to request cancellation of an operation.
 
-              *
 
-              * @class
 
-              * @param {Function} executor The executor function.
 
-              */
 
-             function CancelToken(executor) {
 
-                 if (typeof executor !== 'function') {
 
-                     throw new TypeError('executor must be a function.');
 
-                 }
 
-                 var resolvePromise;
 
-                 this.promise = new Promise(function promiseExecutor(resolve) {
 
-                     resolvePromise = resolve;
 
-                 });
 
-                 var token = this;
 
-                 // eslint-disable-next-line func-names
 
-                 this.promise.then(function(cancel) {
 
-                     if (!token._listeners) return;
 
-                     var i;
 
-                     var l = token._listeners.length;
 
-                     for (i = 0; i < l; i++) {
 
-                         token._listeners[i](cancel);
 
-                     }
 
-                     token._listeners = null;
 
-                 });
 
-                 // eslint-disable-next-line func-names
 
-                 this.promise.then = function(onfulfilled) {
 
-                     var _resolve;
 
-                     // eslint-disable-next-line func-names
 
-                     var promise = new Promise(function(resolve) {
 
-                         token.subscribe(resolve);
 
-                         _resolve = resolve;
 
-                     }).then(onfulfilled);
 
-                     promise.cancel = function reject() {
 
-                         token.unsubscribe(_resolve);
 
-                     };
 
-                     return promise;
 
-                 };
 
-                 executor(function cancel(message) {
 
-                     if (token.reason) {
 
-                         // Cancellation has already been requested
 
-                         return;
 
-                     }
 
-                     token.reason = new Cancel(message);
 
-                     resolvePromise(token.reason);
 
-                 });
 
-             }
 
-             /**
 
-              * Throws a `Cancel` if cancellation has been requested.
 
-              */
 
-             CancelToken.prototype.throwIfRequested = function throwIfRequested() {
 
-                 if (this.reason) {
 
-                     throw this.reason;
 
-                 }
 
-             };
 
-             /**
 
-              * Subscribe to the cancel signal
 
-              */
 
-             CancelToken.prototype.subscribe = function subscribe(listener) {
 
-                 if (this.reason) {
 
-                     listener(this.reason);
 
-                     return;
 
-                 }
 
-                 if (this._listeners) {
 
-                     this._listeners.push(listener);
 
-                 } else {
 
-                     this._listeners = [listener];
 
-                 }
 
-             };
 
-             /**
 
-              * Unsubscribe from the cancel signal
 
-              */
 
-             CancelToken.prototype.unsubscribe = function unsubscribe(listener) {
 
-                 if (!this._listeners) {
 
-                     return;
 
-                 }
 
-                 var index = this._listeners.indexOf(listener);
 
-                 if (index !== -1) {
 
-                     this._listeners.splice(index, 1);
 
-                 }
 
-             };
 
-             /**
 
-              * Returns an object that contains a new `CancelToken` and a function that, when called,
 
-              * cancels the `CancelToken`.
 
-              */
 
-             CancelToken.source = function source() {
 
-                 var cancel;
 
-                 var token = new CancelToken(function executor(c) {
 
-                     cancel = c;
 
-                 });
 
-                 return {
 
-                     token: token,
 
-                     cancel: cancel
 
-                 };
 
-             };
 
-             module.exports = CancelToken;
 
-             /***/ }),
 
-         /***/ "./lib/cancel/isCancel.js":
 
-         /*!********************************!*\
 
-           !*** ./lib/cancel/isCancel.js ***!
 
-           \********************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             module.exports = function isCancel(value) {
 
-                 return !!(value && value.__CANCEL__);
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/core/Axios.js":
 
-         /*!***************************!*\
 
-           !*** ./lib/core/Axios.js ***!
 
-           \***************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var utils = __webpack_require__(/*! ./../utils */ "./lib/utils.js");
 
-             var buildURL = __webpack_require__(/*! ../helpers/buildURL */ "./lib/helpers/buildURL.js");
 
-             var InterceptorManager = __webpack_require__(/*! ./InterceptorManager */ "./lib/core/InterceptorManager.js");
 
-             var dispatchRequest = __webpack_require__(/*! ./dispatchRequest */ "./lib/core/dispatchRequest.js");
 
-             var mergeConfig = __webpack_require__(/*! ./mergeConfig */ "./lib/core/mergeConfig.js");
 
-             var validator = __webpack_require__(/*! ../helpers/validator */ "./lib/helpers/validator.js");
 
-             var validators = validator.validators;
 
-             /**
 
-              * Create a new instance of Axios
 
-              *
 
-              * @param {Object} instanceConfig The default config for the instance
 
-              */
 
-             function Axios(instanceConfig) {
 
-                 this.defaults = instanceConfig;
 
-                 this.interceptors = {
 
-                     request: new InterceptorManager(),
 
-                     response: new InterceptorManager()
 
-                 };
 
-             }
 
-             /**
 
-              * Dispatch a request
 
-              *
 
-              * @param {Object} config The config specific for this request (merged with this.defaults)
 
-              */
 
-             Axios.prototype.request = function request(config) {
 
-                 /*eslint no-param-reassign:0*/
 
-                 // Allow for axios('example/url'[, config]) a la fetch API
 
-                 if (typeof config === 'string') {
 
-                     config = arguments[1] || {};
 
-                     config.url = arguments[0];
 
-                 } else {
 
-                     config = config || {};
 
-                 }
 
-                 config = mergeConfig(this.defaults, config);
 
-                 // Set config.method
 
-                 if (config.method) {
 
-                     config.method = config.method.toLowerCase();
 
-                 } else if (this.defaults.method) {
 
-                     config.method = this.defaults.method.toLowerCase();
 
-                 } else {
 
-                     config.method = 'get';
 
-                 }
 
-                 var transitional = config.transitional;
 
-                 if (transitional !== undefined) {
 
-                     validator.assertOptions(transitional, {
 
-                         silentJSONParsing: validators.transitional(validators.boolean),
 
-                         forcedJSONParsing: validators.transitional(validators.boolean),
 
-                         clarifyTimeoutError: validators.transitional(validators.boolean)
 
-                     }, false);
 
-                 }
 
-                 // filter out skipped interceptors
 
-                 var requestInterceptorChain = [];
 
-                 var synchronousRequestInterceptors = true;
 
-                 this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {
 
-                     if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) {
 
-                         return;
 
-                     }
 
-                     synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;
 
-                     requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);
 
-                 });
 
-                 var responseInterceptorChain = [];
 
-                 this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {
 
-                     responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);
 
-                 });
 
-                 var promise;
 
-                 if (!synchronousRequestInterceptors) {
 
-                     var chain = [dispatchRequest, undefined];
 
-                     Array.prototype.unshift.apply(chain, requestInterceptorChain);
 
-                     chain = chain.concat(responseInterceptorChain);
 
-                     promise = Promise.resolve(config);
 
-                     while (chain.length) {
 
-                         promise = promise.then(chain.shift(), chain.shift());
 
-                     }
 
-                     return promise;
 
-                 }
 
-                 var newConfig = config;
 
-                 while (requestInterceptorChain.length) {
 
-                     var onFulfilled = requestInterceptorChain.shift();
 
-                     var onRejected = requestInterceptorChain.shift();
 
-                     try {
 
-                         newConfig = onFulfilled(newConfig);
 
-                     } catch (error) {
 
-                         onRejected(error);
 
-                         break;
 
-                     }
 
-                 }
 
-                 try {
 
-                     promise = dispatchRequest(newConfig);
 
-                 } catch (error) {
 
-                     return Promise.reject(error);
 
-                 }
 
-                 while (responseInterceptorChain.length) {
 
-                     promise = promise.then(responseInterceptorChain.shift(), responseInterceptorChain.shift());
 
-                 }
 
-                 return promise;
 
-             };
 
-             Axios.prototype.getUri = function getUri(config) {
 
-                 config = mergeConfig(this.defaults, config);
 
-                 return buildURL(config.url, config.params, config.paramsSerializer).replace(/^\?/, '');
 
-             };
 
- // Provide aliases for supported request methods
 
-             utils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {
 
-                 /*eslint func-names:0*/
 
-                 Axios.prototype[method] = function(url, config) {
 
-                     return this.request(mergeConfig(config || {}, {
 
-                         method: method,
 
-                         url: url,
 
-                         data: (config || {}).data
 
-                     }));
 
-                 };
 
-             });
 
-             utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
 
-                 /*eslint func-names:0*/
 
-                 Axios.prototype[method] = function(url, data, config) {
 
-                     return this.request(mergeConfig(config || {}, {
 
-                         method: method,
 
-                         url: url,
 
-                         data: data
 
-                     }));
 
-                 };
 
-             });
 
-             module.exports = Axios;
 
-             /***/ }),
 
-         /***/ "./lib/core/InterceptorManager.js":
 
-         /*!****************************************!*\
 
-           !*** ./lib/core/InterceptorManager.js ***!
 
-           \****************************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var utils = __webpack_require__(/*! ./../utils */ "./lib/utils.js");
 
-             function InterceptorManager() {
 
-                 this.handlers = [];
 
-             }
 
-             /**
 
-              * Add a new interceptor to the stack
 
-              *
 
-              * @param {Function} fulfilled The function to handle `then` for a `Promise`
 
-              * @param {Function} rejected The function to handle `reject` for a `Promise`
 
-              *
 
-              * @return {Number} An ID used to remove interceptor later
 
-              */
 
-             InterceptorManager.prototype.use = function use(fulfilled, rejected, options) {
 
-                 this.handlers.push({
 
-                     fulfilled: fulfilled,
 
-                     rejected: rejected,
 
-                     synchronous: options ? options.synchronous : false,
 
-                     runWhen: options ? options.runWhen : null
 
-                 });
 
-                 return this.handlers.length - 1;
 
-             };
 
-             /**
 
-              * Remove an interceptor from the stack
 
-              *
 
-              * @param {Number} id The ID that was returned by `use`
 
-              */
 
-             InterceptorManager.prototype.eject = function eject(id) {
 
-                 if (this.handlers[id]) {
 
-                     this.handlers[id] = null;
 
-                 }
 
-             };
 
-             /**
 
-              * Iterate over all the registered interceptors
 
-              *
 
-              * This method is particularly useful for skipping over any
 
-              * interceptors that may have become `null` calling `eject`.
 
-              *
 
-              * @param {Function} fn The function to call for each interceptor
 
-              */
 
-             InterceptorManager.prototype.forEach = function forEach(fn) {
 
-                 utils.forEach(this.handlers, function forEachHandler(h) {
 
-                     if (h !== null) {
 
-                         fn(h);
 
-                     }
 
-                 });
 
-             };
 
-             module.exports = InterceptorManager;
 
-             /***/ }),
 
-         /***/ "./lib/core/buildFullPath.js":
 
-         /*!***********************************!*\
 
-           !*** ./lib/core/buildFullPath.js ***!
 
-           \***********************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var isAbsoluteURL = __webpack_require__(/*! ../helpers/isAbsoluteURL */ "./lib/helpers/isAbsoluteURL.js");
 
-             var combineURLs = __webpack_require__(/*! ../helpers/combineURLs */ "./lib/helpers/combineURLs.js");
 
-             /**
 
-              * Creates a new URL by combining the baseURL with the requestedURL,
 
-              * only when the requestedURL is not already an absolute URL.
 
-              * If the requestURL is absolute, this function returns the requestedURL untouched.
 
-              *
 
-              * @param {string} baseURL The base URL
 
-              * @param {string} requestedURL Absolute or relative URL to combine
 
-              * @returns {string} The combined full path
 
-              */
 
-             module.exports = function buildFullPath(baseURL, requestedURL) {
 
-                 if (baseURL && !isAbsoluteURL(requestedURL)) {
 
-                     return combineURLs(baseURL, requestedURL);
 
-                 }
 
-                 return requestedURL;
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/core/createError.js":
 
-         /*!*********************************!*\
 
-           !*** ./lib/core/createError.js ***!
 
-           \*********************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var enhanceError = __webpack_require__(/*! ./enhanceError */ "./lib/core/enhanceError.js");
 
-             /**
 
-              * Create an Error with the specified message, config, error code, request and response.
 
-              *
 
-              * @param {string} message The error message.
 
-              * @param {Object} config The config.
 
-              * @param {string} [code] The error code (for example, 'ECONNABORTED').
 
-              * @param {Object} [request] The request.
 
-              * @param {Object} [response] The response.
 
-              * @returns {Error} The created error.
 
-              */
 
-             module.exports = function createError(message, config, code, request, response) {
 
-                 var error = new Error(message);
 
-                 return enhanceError(error, config, code, request, response);
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/core/dispatchRequest.js":
 
-         /*!*************************************!*\
 
-           !*** ./lib/core/dispatchRequest.js ***!
 
-           \*************************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var utils = __webpack_require__(/*! ./../utils */ "./lib/utils.js");
 
-             var transformData = __webpack_require__(/*! ./transformData */ "./lib/core/transformData.js");
 
-             var isCancel = __webpack_require__(/*! ../cancel/isCancel */ "./lib/cancel/isCancel.js");
 
-             var defaults = __webpack_require__(/*! ../defaults */ "./lib/defaults.js");
 
-             var Cancel = __webpack_require__(/*! ../cancel/Cancel */ "./lib/cancel/Cancel.js");
 
-             /**
 
-              * Throws a `Cancel` if cancellation has been requested.
 
-              */
 
-             function throwIfCancellationRequested(config) {
 
-                 if (config.cancelToken) {
 
-                     config.cancelToken.throwIfRequested();
 
-                 }
 
-                 if (config.signal && config.signal.aborted) {
 
-                     throw new Cancel('canceled');
 
-                 }
 
-             }
 
-             /**
 
-              * Dispatch a request to the server using the configured adapter.
 
-              *
 
-              * @param {object} config The config that is to be used for the request
 
-              * @returns {Promise} The Promise to be fulfilled
 
-              */
 
-             module.exports = function dispatchRequest(config) {
 
-                 throwIfCancellationRequested(config);
 
-                 // Ensure headers exist
 
-                 config.headers = config.headers || {};
 
-                 // Transform request data
 
-                 config.data = transformData.call(
 
-                     config,
 
-                     config.data,
 
-                     config.headers,
 
-                     config.transformRequest
 
-                 );
 
-                 // Flatten headers
 
-                 config.headers = utils.merge(
 
-                     config.headers.common || {},
 
-                     config.headers[config.method] || {},
 
-                     config.headers
 
-                 );
 
-                 utils.forEach(
 
-                     ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],
 
-                     function cleanHeaderConfig(method) {
 
-                         delete config.headers[method];
 
-                     }
 
-                 );
 
-                 var adapter = config.adapter || defaults.adapter;
 
-                 return adapter(config).then(function onAdapterResolution(response) {
 
-                     throwIfCancellationRequested(config);
 
-                     // Transform response data
 
-                     response.data = transformData.call(
 
-                         config,
 
-                         response.data,
 
-                         response.headers,
 
-                         config.transformResponse
 
-                     );
 
-                     return response;
 
-                 }, function onAdapterRejection(reason) {
 
-                     if (!isCancel(reason)) {
 
-                         throwIfCancellationRequested(config);
 
-                         // Transform response data
 
-                         if (reason && reason.response) {
 
-                             reason.response.data = transformData.call(
 
-                                 config,
 
-                                 reason.response.data,
 
-                                 reason.response.headers,
 
-                                 config.transformResponse
 
-                             );
 
-                         }
 
-                     }
 
-                     return Promise.reject(reason);
 
-                 });
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/core/enhanceError.js":
 
-         /*!**********************************!*\
 
-           !*** ./lib/core/enhanceError.js ***!
 
-           \**********************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             /**
 
-              * Update an Error with the specified config, error code, and response.
 
-              *
 
-              * @param {Error} error The error to update.
 
-              * @param {Object} config The config.
 
-              * @param {string} [code] The error code (for example, 'ECONNABORTED').
 
-              * @param {Object} [request] The request.
 
-              * @param {Object} [response] The response.
 
-              * @returns {Error} The error.
 
-              */
 
-             module.exports = function enhanceError(error, config, code, request, response) {
 
-                 error.config = config;
 
-                 if (code) {
 
-                     error.code = code;
 
-                 }
 
-                 error.request = request;
 
-                 error.response = response;
 
-                 error.isAxiosError = true;
 
-                 error.toJSON = function toJSON() {
 
-                     return {
 
-                         // Standard
 
-                         message: this.message,
 
-                         name: this.name,
 
-                         // Microsoft
 
-                         description: this.description,
 
-                         number: this.number,
 
-                         // Mozilla
 
-                         fileName: this.fileName,
 
-                         lineNumber: this.lineNumber,
 
-                         columnNumber: this.columnNumber,
 
-                         stack: this.stack,
 
-                         // Axios
 
-                         config: this.config,
 
-                         code: this.code,
 
-                         status: this.response && this.response.status ? this.response.status : null
 
-                     };
 
-                 };
 
-                 return error;
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/core/mergeConfig.js":
 
-         /*!*********************************!*\
 
-           !*** ./lib/core/mergeConfig.js ***!
 
-           \*********************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var utils = __webpack_require__(/*! ../utils */ "./lib/utils.js");
 
-             /**
 
-              * Config-specific merge-function which creates a new config-object
 
-              * by merging two configuration objects together.
 
-              *
 
-              * @param {Object} config1
 
-              * @param {Object} config2
 
-              * @returns {Object} New object resulting from merging config2 to config1
 
-              */
 
-             module.exports = function mergeConfig(config1, config2) {
 
-                 // eslint-disable-next-line no-param-reassign
 
-                 config2 = config2 || {};
 
-                 var config = {};
 
-                 function getMergedValue(target, source) {
 
-                     if (utils.isPlainObject(target) && utils.isPlainObject(source)) {
 
-                         return utils.merge(target, source);
 
-                     } else if (utils.isPlainObject(source)) {
 
-                         return utils.merge({}, source);
 
-                     } else if (utils.isArray(source)) {
 
-                         return source.slice();
 
-                     }
 
-                     return source;
 
-                 }
 
-                 // eslint-disable-next-line consistent-return
 
-                 function mergeDeepProperties(prop) {
 
-                     if (!utils.isUndefined(config2[prop])) {
 
-                         return getMergedValue(config1[prop], config2[prop]);
 
-                     } else if (!utils.isUndefined(config1[prop])) {
 
-                         return getMergedValue(undefined, config1[prop]);
 
-                     }
 
-                 }
 
-                 // eslint-disable-next-line consistent-return
 
-                 function valueFromConfig2(prop) {
 
-                     if (!utils.isUndefined(config2[prop])) {
 
-                         return getMergedValue(undefined, config2[prop]);
 
-                     }
 
-                 }
 
-                 // eslint-disable-next-line consistent-return
 
-                 function defaultToConfig2(prop) {
 
-                     if (!utils.isUndefined(config2[prop])) {
 
-                         return getMergedValue(undefined, config2[prop]);
 
-                     } else if (!utils.isUndefined(config1[prop])) {
 
-                         return getMergedValue(undefined, config1[prop]);
 
-                     }
 
-                 }
 
-                 // eslint-disable-next-line consistent-return
 
-                 function mergeDirectKeys(prop) {
 
-                     if (prop in config2) {
 
-                         return getMergedValue(config1[prop], config2[prop]);
 
-                     } else if (prop in config1) {
 
-                         return getMergedValue(undefined, config1[prop]);
 
-                     }
 
-                 }
 
-                 var mergeMap = {
 
-                     'url': valueFromConfig2,
 
-                     'method': valueFromConfig2,
 
-                     'data': valueFromConfig2,
 
-                     'baseURL': defaultToConfig2,
 
-                     'transformRequest': defaultToConfig2,
 
-                     'transformResponse': defaultToConfig2,
 
-                     'paramsSerializer': defaultToConfig2,
 
-                     'timeout': defaultToConfig2,
 
-                     'timeoutMessage': defaultToConfig2,
 
-                     'withCredentials': defaultToConfig2,
 
-                     'adapter': defaultToConfig2,
 
-                     'responseType': defaultToConfig2,
 
-                     'xsrfCookieName': defaultToConfig2,
 
-                     'xsrfHeaderName': defaultToConfig2,
 
-                     'onUploadProgress': defaultToConfig2,
 
-                     'onDownloadProgress': defaultToConfig2,
 
-                     'decompress': defaultToConfig2,
 
-                     'maxContentLength': defaultToConfig2,
 
-                     'maxBodyLength': defaultToConfig2,
 
-                     'transport': defaultToConfig2,
 
-                     'httpAgent': defaultToConfig2,
 
-                     'httpsAgent': defaultToConfig2,
 
-                     'cancelToken': defaultToConfig2,
 
-                     'socketPath': defaultToConfig2,
 
-                     'responseEncoding': defaultToConfig2,
 
-                     'validateStatus': mergeDirectKeys
 
-                 };
 
-                 utils.forEach(Object.keys(config1).concat(Object.keys(config2)), function computeConfigValue(prop) {
 
-                     var merge = mergeMap[prop] || mergeDeepProperties;
 
-                     var configValue = merge(prop);
 
-                     (utils.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);
 
-                 });
 
-                 return config;
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/core/settle.js":
 
-         /*!****************************!*\
 
-           !*** ./lib/core/settle.js ***!
 
-           \****************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var createError = __webpack_require__(/*! ./createError */ "./lib/core/createError.js");
 
-             /**
 
-              * Resolve or reject a Promise based on response status.
 
-              *
 
-              * @param {Function} resolve A function that resolves the promise.
 
-              * @param {Function} reject A function that rejects the promise.
 
-              * @param {object} response The response.
 
-              */
 
-             module.exports = function settle(resolve, reject, response) {
 
-                 var validateStatus = response.config.validateStatus;
 
-                 if (!response.status || !validateStatus || validateStatus(response.status)) {
 
-                     resolve(response);
 
-                 } else {
 
-                     reject(createError(
 
-                         'Request failed with status code ' + response.status,
 
-                         response.config,
 
-                         null,
 
-                         response.request,
 
-                         response
 
-                     ));
 
-                 }
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/core/transformData.js":
 
-         /*!***********************************!*\
 
-           !*** ./lib/core/transformData.js ***!
 
-           \***********************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var utils = __webpack_require__(/*! ./../utils */ "./lib/utils.js");
 
-             var defaults = __webpack_require__(/*! ./../defaults */ "./lib/defaults.js");
 
-             /**
 
-              * Transform the data for a request or a response
 
-              *
 
-              * @param {Object|String} data The data to be transformed
 
-              * @param {Array} headers The headers for the request or response
 
-              * @param {Array|Function} fns A single function or Array of functions
 
-              * @returns {*} The resulting transformed data
 
-              */
 
-             module.exports = function transformData(data, headers, fns) {
 
-                 var context = this || defaults;
 
-                 /*eslint no-param-reassign:0*/
 
-                 utils.forEach(fns, function transform(fn) {
 
-                     data = fn.call(context, data, headers);
 
-                 });
 
-                 return data;
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/defaults.js":
 
-         /*!*************************!*\
 
-           !*** ./lib/defaults.js ***!
 
-           \*************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var utils = __webpack_require__(/*! ./utils */ "./lib/utils.js");
 
-             var normalizeHeaderName = __webpack_require__(/*! ./helpers/normalizeHeaderName */ "./lib/helpers/normalizeHeaderName.js");
 
-             var enhanceError = __webpack_require__(/*! ./core/enhanceError */ "./lib/core/enhanceError.js");
 
-             var DEFAULT_CONTENT_TYPE = {
 
-                 'Content-Type': 'application/x-www-form-urlencoded'
 
-             };
 
-             function setContentTypeIfUnset(headers, value) {
 
-                 if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) {
 
-                     headers['Content-Type'] = value;
 
-                 }
 
-             }
 
-             function getDefaultAdapter() {
 
-                 var adapter;
 
-                 if (typeof XMLHttpRequest !== 'undefined') {
 
-                     // For browsers use XHR adapter
 
-                     adapter = __webpack_require__(/*! ./adapters/xhr */ "./lib/adapters/xhr.js");
 
-                 } else if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') {
 
-                     // For node use HTTP adapter
 
-                     adapter = __webpack_require__(/*! ./adapters/http */ "./lib/adapters/xhr.js");
 
-                 }
 
-                 return adapter;
 
-             }
 
-             function stringifySafely(rawValue, parser, encoder) {
 
-                 if (utils.isString(rawValue)) {
 
-                     try {
 
-                         (parser || JSON.parse)(rawValue);
 
-                         return utils.trim(rawValue);
 
-                     } catch (e) {
 
-                         if (e.name !== 'SyntaxError') {
 
-                             throw e;
 
-                         }
 
-                     }
 
-                 }
 
-                 return (encoder || JSON.stringify)(rawValue);
 
-             }
 
-             var defaults = {
 
-                 transitional: {
 
-                     silentJSONParsing: true,
 
-                     forcedJSONParsing: true,
 
-                     clarifyTimeoutError: false
 
-                 },
 
-                 adapter: getDefaultAdapter(),
 
-                 transformRequest: [function transformRequest(data, headers) {
 
-                     normalizeHeaderName(headers, 'Accept');
 
-                     normalizeHeaderName(headers, 'Content-Type');
 
-                     if (utils.isFormData(data) ||
 
-                         utils.isArrayBuffer(data) ||
 
-                         utils.isBuffer(data) ||
 
-                         utils.isStream(data) ||
 
-                         utils.isFile(data) ||
 
-                         utils.isBlob(data)
 
-                     ) {
 
-                         return data;
 
-                     }
 
-                     if (utils.isArrayBufferView(data)) {
 
-                         return data.buffer;
 
-                     }
 
-                     if (utils.isURLSearchParams(data)) {
 
-                         setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8');
 
-                         return data.toString();
 
-                     }
 
-                     if (utils.isObject(data) || (headers && headers['Content-Type'] === 'application/json')) {
 
-                         setContentTypeIfUnset(headers, 'application/json');
 
-                         return stringifySafely(data);
 
-                     }
 
-                     return data;
 
-                 }],
 
-                 transformResponse: [function transformResponse(data) {
 
-                     var transitional = this.transitional || defaults.transitional;
 
-                     var silentJSONParsing = transitional && transitional.silentJSONParsing;
 
-                     var forcedJSONParsing = transitional && transitional.forcedJSONParsing;
 
-                     var strictJSONParsing = !silentJSONParsing && this.responseType === 'json';
 
-                     if (strictJSONParsing || (forcedJSONParsing && utils.isString(data) && data.length)) {
 
-                         try {
 
-                             return JSON.parse(data);
 
-                         } catch (e) {
 
-                             if (strictJSONParsing) {
 
-                                 if (e.name === 'SyntaxError') {
 
-                                     throw enhanceError(e, this, 'E_JSON_PARSE');
 
-                                 }
 
-                                 throw e;
 
-                             }
 
-                         }
 
-                     }
 
-                     return data;
 
-                 }],
 
-                 /**
 
-                  * A timeout in milliseconds to abort a request. If set to 0 (default) a
 
-                  * timeout is not created.
 
-                  */
 
-                 timeout: 0,
 
-                 xsrfCookieName: 'XSRF-TOKEN',
 
-                 xsrfHeaderName: 'X-XSRF-TOKEN',
 
-                 maxContentLength: -1,
 
-                 maxBodyLength: -1,
 
-                 validateStatus: function validateStatus(status) {
 
-                     return status >= 200 && status < 300;
 
-                 },
 
-                 headers: {
 
-                     common: {
 
-                         'Accept': 'application/json, text/plain, */*'
 
-                     }
 
-                 }
 
-             };
 
-             utils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {
 
-                 defaults.headers[method] = {};
 
-             });
 
-             utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
 
-                 defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);
 
-             });
 
-             module.exports = defaults;
 
-             /***/ }),
 
-         /***/ "./lib/env/data.js":
 
-         /*!*************************!*\
 
-           !*** ./lib/env/data.js ***!
 
-           \*************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports) {
 
-             module.exports = {
 
-                 "version": "0.24.0"
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/helpers/bind.js":
 
-         /*!*****************************!*\
 
-           !*** ./lib/helpers/bind.js ***!
 
-           \*****************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             module.exports = function bind(fn, thisArg) {
 
-                 return function wrap() {
 
-                     var args = new Array(arguments.length);
 
-                     for (var i = 0; i < args.length; i++) {
 
-                         args[i] = arguments[i];
 
-                     }
 
-                     return fn.apply(thisArg, args);
 
-                 };
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/helpers/buildURL.js":
 
-         /*!*********************************!*\
 
-           !*** ./lib/helpers/buildURL.js ***!
 
-           \*********************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var utils = __webpack_require__(/*! ./../utils */ "./lib/utils.js");
 
-             function encode(val) {
 
-                 return encodeURIComponent(val).
 
-                 replace(/%3A/gi, ':').
 
-                 replace(/%24/g, '$').
 
-                 replace(/%2C/gi, ',').
 
-                 replace(/%20/g, '+').
 
-                 replace(/%5B/gi, '[').
 
-                 replace(/%5D/gi, ']');
 
-             }
 
-             /**
 
-              * Build a URL by appending params to the end
 
-              *
 
-              * @param {string} url The base of the url (e.g., http://www.google.com)
 
-              * @param {object} [params] The params to be appended
 
-              * @returns {string} The formatted url
 
-              */
 
-             module.exports = function buildURL(url, params, paramsSerializer) {
 
-                 /*eslint no-param-reassign:0*/
 
-                 if (!params) {
 
-                     return url;
 
-                 }
 
-                 var serializedParams;
 
-                 if (paramsSerializer) {
 
-                     serializedParams = paramsSerializer(params);
 
-                 } else if (utils.isURLSearchParams(params)) {
 
-                     serializedParams = params.toString();
 
-                 } else {
 
-                     var parts = [];
 
-                     utils.forEach(params, function serialize(val, key) {
 
-                         if (val === null || typeof val === 'undefined') {
 
-                             return;
 
-                         }
 
-                         if (utils.isArray(val)) {
 
-                             key = key + '[]';
 
-                         } else {
 
-                             val = [val];
 
-                         }
 
-                         utils.forEach(val, function parseValue(v) {
 
-                             if (utils.isDate(v)) {
 
-                                 v = v.toISOString();
 
-                             } else if (utils.isObject(v)) {
 
-                                 v = JSON.stringify(v);
 
-                             }
 
-                             parts.push(encode(key) + '=' + encode(v));
 
-                         });
 
-                     });
 
-                     serializedParams = parts.join('&');
 
-                 }
 
-                 if (serializedParams) {
 
-                     var hashmarkIndex = url.indexOf('#');
 
-                     if (hashmarkIndex !== -1) {
 
-                         url = url.slice(0, hashmarkIndex);
 
-                     }
 
-                     url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;
 
-                 }
 
-                 return url;
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/helpers/combineURLs.js":
 
-         /*!************************************!*\
 
-           !*** ./lib/helpers/combineURLs.js ***!
 
-           \************************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             /**
 
-              * Creates a new URL by combining the specified URLs
 
-              *
 
-              * @param {string} baseURL The base URL
 
-              * @param {string} relativeURL The relative URL
 
-              * @returns {string} The combined URL
 
-              */
 
-             module.exports = function combineURLs(baseURL, relativeURL) {
 
-                 return relativeURL
 
-                     ? baseURL.replace(/\/+$/, '') + '/' + relativeURL.replace(/^\/+/, '')
 
-                     : baseURL;
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/helpers/cookies.js":
 
-         /*!********************************!*\
 
-           !*** ./lib/helpers/cookies.js ***!
 
-           \********************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var utils = __webpack_require__(/*! ./../utils */ "./lib/utils.js");
 
-             module.exports = (
 
-                 utils.isStandardBrowserEnv() ?
 
-                     // Standard browser envs support document.cookie
 
-                     (function standardBrowserEnv() {
 
-                         return {
 
-                             write: function write(name, value, expires, path, domain, secure) {
 
-                                 var cookie = [];
 
-                                 cookie.push(name + '=' + encodeURIComponent(value));
 
-                                 if (utils.isNumber(expires)) {
 
-                                     cookie.push('expires=' + new Date(expires).toGMTString());
 
-                                 }
 
-                                 if (utils.isString(path)) {
 
-                                     cookie.push('path=' + path);
 
-                                 }
 
-                                 if (utils.isString(domain)) {
 
-                                     cookie.push('domain=' + domain);
 
-                                 }
 
-                                 if (secure === true) {
 
-                                     cookie.push('secure');
 
-                                 }
 
-                                 document.cookie = cookie.join('; ');
 
-                             },
 
-                             read: function read(name) {
 
-                                 var match = document.cookie.match(new RegExp('(^|;\\s*)(' + name + ')=([^;]*)'));
 
-                                 return (match ? decodeURIComponent(match[3]) : null);
 
-                             },
 
-                             remove: function remove(name) {
 
-                                 this.write(name, '', Date.now() - 86400000);
 
-                             }
 
-                         };
 
-                     })() :
 
-                     // Non standard browser env (web workers, react-native) lack needed support.
 
-                     (function nonStandardBrowserEnv() {
 
-                         return {
 
-                             write: function write() {},
 
-                             read: function read() { return null; },
 
-                             remove: function remove() {}
 
-                         };
 
-                     })()
 
-             );
 
-             /***/ }),
 
-         /***/ "./lib/helpers/isAbsoluteURL.js":
 
-         /*!**************************************!*\
 
-           !*** ./lib/helpers/isAbsoluteURL.js ***!
 
-           \**************************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             /**
 
-              * Determines whether the specified URL is absolute
 
-              *
 
-              * @param {string} url The URL to test
 
-              * @returns {boolean} True if the specified URL is absolute, otherwise false
 
-              */
 
-             module.exports = function isAbsoluteURL(url) {
 
-                 // A URL is considered absolute if it begins with "<scheme>://" or "//" (protocol-relative URL).
 
-                 // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed
 
-                 // by any combination of letters, digits, plus, period, or hyphen.
 
-                 return /^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(url);
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/helpers/isAxiosError.js":
 
-         /*!*************************************!*\
 
-           !*** ./lib/helpers/isAxiosError.js ***!
 
-           \*************************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             /**
 
-              * Determines whether the payload is an error thrown by Axios
 
-              *
 
-              * @param {*} payload The value to test
 
-              * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false
 
-              */
 
-             module.exports = function isAxiosError(payload) {
 
-                 return (typeof payload === 'object') && (payload.isAxiosError === true);
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/helpers/isURLSameOrigin.js":
 
-         /*!****************************************!*\
 
-           !*** ./lib/helpers/isURLSameOrigin.js ***!
 
-           \****************************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var utils = __webpack_require__(/*! ./../utils */ "./lib/utils.js");
 
-             module.exports = (
 
-                 utils.isStandardBrowserEnv() ?
 
-                     // Standard browser envs have full support of the APIs needed to test
 
-                     // whether the request URL is of the same origin as current location.
 
-                     (function standardBrowserEnv() {
 
-                         var msie = /(msie|trident)/i.test(navigator.userAgent);
 
-                         var urlParsingNode = document.createElement('a');
 
-                         var originURL;
 
-                         /**
 
-                          * Parse a URL to discover it's components
 
-                          *
 
-                          * @param {String} url The URL to be parsed
 
-                          * @returns {Object}
 
-                          */
 
-                         function resolveURL(url) {
 
-                             var href = url;
 
-                             if (msie) {
 
-                                 // IE needs attribute set twice to normalize properties
 
-                                 urlParsingNode.setAttribute('href', href);
 
-                                 href = urlParsingNode.href;
 
-                             }
 
-                             urlParsingNode.setAttribute('href', href);
 
-                             // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils
 
-                             return {
 
-                                 href: urlParsingNode.href,
 
-                                 protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',
 
-                                 host: urlParsingNode.host,
 
-                                 search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, '') : '',
 
-                                 hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',
 
-                                 hostname: urlParsingNode.hostname,
 
-                                 port: urlParsingNode.port,
 
-                                 pathname: (urlParsingNode.pathname.charAt(0) === '/') ?
 
-                                     urlParsingNode.pathname :
 
-                                     '/' + urlParsingNode.pathname
 
-                             };
 
-                         }
 
-                         originURL = resolveURL(window.location.href);
 
-                         /**
 
-                          * Determine if a URL shares the same origin as the current location
 
-                          *
 
-                          * @param {String} requestURL The URL to test
 
-                          * @returns {boolean} True if URL shares the same origin, otherwise false
 
-                          */
 
-                         return function isURLSameOrigin(requestURL) {
 
-                             var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;
 
-                             return (parsed.protocol === originURL.protocol &&
 
-                                 parsed.host === originURL.host);
 
-                         };
 
-                     })() :
 
-                     // Non standard browser envs (web workers, react-native) lack needed support.
 
-                     (function nonStandardBrowserEnv() {
 
-                         return function isURLSameOrigin() {
 
-                             return true;
 
-                         };
 
-                     })()
 
-             );
 
-             /***/ }),
 
-         /***/ "./lib/helpers/normalizeHeaderName.js":
 
-         /*!********************************************!*\
 
-           !*** ./lib/helpers/normalizeHeaderName.js ***!
 
-           \********************************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var utils = __webpack_require__(/*! ../utils */ "./lib/utils.js");
 
-             module.exports = function normalizeHeaderName(headers, normalizedName) {
 
-                 utils.forEach(headers, function processHeader(value, name) {
 
-                     if (name !== normalizedName && name.toUpperCase() === normalizedName.toUpperCase()) {
 
-                         headers[normalizedName] = value;
 
-                         delete headers[name];
 
-                     }
 
-                 });
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/helpers/parseHeaders.js":
 
-         /*!*************************************!*\
 
-           !*** ./lib/helpers/parseHeaders.js ***!
 
-           \*************************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var utils = __webpack_require__(/*! ./../utils */ "./lib/utils.js");
 
- // Headers whose duplicates are ignored by node
 
- // c.f. https://nodejs.org/api/http.html#http_message_headers
 
-             var ignoreDuplicateOf = [
 
-                 'age', 'authorization', 'content-length', 'content-type', 'etag',
 
-                 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',
 
-                 'last-modified', 'location', 'max-forwards', 'proxy-authorization',
 
-                 'referer', 'retry-after', 'user-agent'
 
-             ];
 
-             /**
 
-              * Parse headers into an object
 
-              *
 
-              * ```
 
-              * Date: Wed, 27 Aug 2014 08:58:49 GMT
 
-              * Content-Type: application/json
 
-              * Connection: keep-alive
 
-              * Transfer-Encoding: chunked
 
-              * ```
 
-              *
 
-              * @param {String} headers Headers needing to be parsed
 
-              * @returns {Object} Headers parsed into an object
 
-              */
 
-             module.exports = function parseHeaders(headers) {
 
-                 var parsed = {};
 
-                 var key;
 
-                 var val;
 
-                 var i;
 
-                 if (!headers) { return parsed; }
 
-                 utils.forEach(headers.split('\n'), function parser(line) {
 
-                     i = line.indexOf(':');
 
-                     key = utils.trim(line.substr(0, i)).toLowerCase();
 
-                     val = utils.trim(line.substr(i + 1));
 
-                     if (key) {
 
-                         if (parsed[key] && ignoreDuplicateOf.indexOf(key) >= 0) {
 
-                             return;
 
-                         }
 
-                         if (key === 'set-cookie') {
 
-                             parsed[key] = (parsed[key] ? parsed[key] : []).concat([val]);
 
-                         } else {
 
-                             parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;
 
-                         }
 
-                     }
 
-                 });
 
-                 return parsed;
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/helpers/spread.js":
 
-         /*!*******************************!*\
 
-           !*** ./lib/helpers/spread.js ***!
 
-           \*******************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             /**
 
-              * Syntactic sugar for invoking a function and expanding an array for arguments.
 
-              *
 
-              * Common use case would be to use `Function.prototype.apply`.
 
-              *
 
-              *  ```js
 
-              *  function f(x, y, z) {}
 
-              *  var args = [1, 2, 3];
 
-              *  f.apply(null, args);
 
-              *  ```
 
-              *
 
-              * With `spread` this example can be re-written.
 
-              *
 
-              *  ```js
 
-              *  spread(function(x, y, z) {})([1, 2, 3]);
 
-              *  ```
 
-              *
 
-              * @param {Function} callback
 
-              * @returns {Function}
 
-              */
 
-             module.exports = function spread(callback) {
 
-                 return function wrap(arr) {
 
-                     return callback.apply(null, arr);
 
-                 };
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/helpers/validator.js":
 
-         /*!**********************************!*\
 
-           !*** ./lib/helpers/validator.js ***!
 
-           \**********************************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var VERSION = __webpack_require__(/*! ../env/data */ "./lib/env/data.js").version;
 
-             var validators = {};
 
- // eslint-disable-next-line func-names
 
-             ['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach(function(type, i) {
 
-                 validators[type] = function validator(thing) {
 
-                     return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type;
 
-                 };
 
-             });
 
-             var deprecatedWarnings = {};
 
-             /**
 
-              * Transitional option validator
 
-              * @param {function|boolean?} validator - set to false if the transitional option has been removed
 
-              * @param {string?} version - deprecated version / removed since version
 
-              * @param {string?} message - some message with additional info
 
-              * @returns {function}
 
-              */
 
-             validators.transitional = function transitional(validator, version, message) {
 
-                 function formatMessage(opt, desc) {
 
-                     return '[Axios v' + VERSION + '] Transitional option \'' + opt + '\'' + desc + (message ? '. ' + message : '');
 
-                 }
 
-                 // eslint-disable-next-line func-names
 
-                 return function(value, opt, opts) {
 
-                     if (validator === false) {
 
-                         throw new Error(formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')));
 
-                     }
 
-                     if (version && !deprecatedWarnings[opt]) {
 
-                         deprecatedWarnings[opt] = true;
 
-                         // eslint-disable-next-line no-console
 
-                         console.warn(
 
-                             formatMessage(
 
-                                 opt,
 
-                                 ' has been deprecated since v' + version + ' and will be removed in the near future'
 
-                             )
 
-                         );
 
-                     }
 
-                     return validator ? validator(value, opt, opts) : true;
 
-                 };
 
-             };
 
-             /**
 
-              * Assert object's properties type
 
-              * @param {object} options
 
-              * @param {object} schema
 
-              * @param {boolean?} allowUnknown
 
-              */
 
-             function assertOptions(options, schema, allowUnknown) {
 
-                 if (typeof options !== 'object') {
 
-                     throw new TypeError('options must be an object');
 
-                 }
 
-                 var keys = Object.keys(options);
 
-                 var i = keys.length;
 
-                 while (i-- > 0) {
 
-                     var opt = keys[i];
 
-                     var validator = schema[opt];
 
-                     if (validator) {
 
-                         var value = options[opt];
 
-                         var result = value === undefined || validator(value, opt, options);
 
-                         if (result !== true) {
 
-                             throw new TypeError('option ' + opt + ' must be ' + result);
 
-                         }
 
-                         continue;
 
-                     }
 
-                     if (allowUnknown !== true) {
 
-                         throw Error('Unknown option ' + opt);
 
-                     }
 
-                 }
 
-             }
 
-             module.exports = {
 
-                 assertOptions: assertOptions,
 
-                 validators: validators
 
-             };
 
-             /***/ }),
 
-         /***/ "./lib/utils.js":
 
-         /*!**********************!*\
 
-           !*** ./lib/utils.js ***!
 
-           \**********************/
 
-         /*! no static exports found */
 
-         /***/ (function(module, exports, __webpack_require__) {
 
-             "use strict";
 
-             var bind = __webpack_require__(/*! ./helpers/bind */ "./lib/helpers/bind.js");
 
- // utils is a library of generic helper functions non-specific to axios
 
-             var toString = Object.prototype.toString;
 
-             /**
 
-              * Determine if a value is an Array
 
-              *
 
-              * @param {Object} val The value to test
 
-              * @returns {boolean} True if value is an Array, otherwise false
 
-              */
 
-             function isArray(val) {
 
-                 return toString.call(val) === '[object Array]';
 
-             }
 
-             /**
 
-              * Determine if a value is undefined
 
-              *
 
-              * @param {Object} val The value to test
 
-              * @returns {boolean} True if the value is undefined, otherwise false
 
-              */
 
-             function isUndefined(val) {
 
-                 return typeof val === 'undefined';
 
-             }
 
-             /**
 
-              * Determine if a value is a Buffer
 
-              *
 
-              * @param {Object} val The value to test
 
-              * @returns {boolean} True if value is a Buffer, otherwise false
 
-              */
 
-             function isBuffer(val) {
 
-                 return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)
 
-                     && typeof val.constructor.isBuffer === 'function' && val.constructor.isBuffer(val);
 
-             }
 
-             /**
 
-              * Determine if a value is an ArrayBuffer
 
-              *
 
-              * @param {Object} val The value to test
 
-              * @returns {boolean} True if value is an ArrayBuffer, otherwise false
 
-              */
 
-             function isArrayBuffer(val) {
 
-                 return toString.call(val) === '[object ArrayBuffer]';
 
-             }
 
-             /**
 
-              * Determine if a value is a FormData
 
-              *
 
-              * @param {Object} val The value to test
 
-              * @returns {boolean} True if value is an FormData, otherwise false
 
-              */
 
-             function isFormData(val) {
 
-                 return (typeof FormData !== 'undefined') && (val instanceof FormData);
 
-             }
 
-             /**
 
-              * Determine if a value is a view on an ArrayBuffer
 
-              *
 
-              * @param {Object} val The value to test
 
-              * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false
 
-              */
 
-             function isArrayBufferView(val) {
 
-                 var result;
 
-                 if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {
 
-                     result = ArrayBuffer.isView(val);
 
-                 } else {
 
-                     result = (val) && (val.buffer) && (val.buffer instanceof ArrayBuffer);
 
-                 }
 
-                 return result;
 
-             }
 
-             /**
 
-              * Determine if a value is a String
 
-              *
 
-              * @param {Object} val The value to test
 
-              * @returns {boolean} True if value is a String, otherwise false
 
-              */
 
-             function isString(val) {
 
-                 return typeof val === 'string';
 
-             }
 
-             /**
 
-              * Determine if a value is a Number
 
-              *
 
-              * @param {Object} val The value to test
 
-              * @returns {boolean} True if value is a Number, otherwise false
 
-              */
 
-             function isNumber(val) {
 
-                 return typeof val === 'number';
 
-             }
 
-             /**
 
-              * Determine if a value is an Object
 
-              *
 
-              * @param {Object} val The value to test
 
-              * @returns {boolean} True if value is an Object, otherwise false
 
-              */
 
-             function isObject(val) {
 
-                 return val !== null && typeof val === 'object';
 
-             }
 
-             /**
 
-              * Determine if a value is a plain Object
 
-              *
 
-              * @param {Object} val The value to test
 
-              * @return {boolean} True if value is a plain Object, otherwise false
 
-              */
 
-             function isPlainObject(val) {
 
-                 if (toString.call(val) !== '[object Object]') {
 
-                     return false;
 
-                 }
 
-                 var prototype = Object.getPrototypeOf(val);
 
-                 return prototype === null || prototype === Object.prototype;
 
-             }
 
-             /**
 
-              * Determine if a value is a Date
 
-              *
 
-              * @param {Object} val The value to test
 
-              * @returns {boolean} True if value is a Date, otherwise false
 
-              */
 
-             function isDate(val) {
 
-                 return toString.call(val) === '[object Date]';
 
-             }
 
-             /**
 
-              * Determine if a value is a File
 
-              *
 
-              * @param {Object} val The value to test
 
-              * @returns {boolean} True if value is a File, otherwise false
 
-              */
 
-             function isFile(val) {
 
-                 return toString.call(val) === '[object File]';
 
-             }
 
-             /**
 
-              * Determine if a value is a Blob
 
-              *
 
-              * @param {Object} val The value to test
 
-              * @returns {boolean} True if value is a Blob, otherwise false
 
-              */
 
-             function isBlob(val) {
 
-                 return toString.call(val) === '[object Blob]';
 
-             }
 
-             /**
 
-              * Determine if a value is a Function
 
-              *
 
-              * @param {Object} val The value to test
 
-              * @returns {boolean} True if value is a Function, otherwise false
 
-              */
 
-             function isFunction(val) {
 
-                 return toString.call(val) === '[object Function]';
 
-             }
 
-             /**
 
-              * Determine if a value is a Stream
 
-              *
 
-              * @param {Object} val The value to test
 
-              * @returns {boolean} True if value is a Stream, otherwise false
 
-              */
 
-             function isStream(val) {
 
-                 return isObject(val) && isFunction(val.pipe);
 
-             }
 
-             /**
 
-              * Determine if a value is a URLSearchParams object
 
-              *
 
-              * @param {Object} val The value to test
 
-              * @returns {boolean} True if value is a URLSearchParams object, otherwise false
 
-              */
 
-             function isURLSearchParams(val) {
 
-                 return typeof URLSearchParams !== 'undefined' && val instanceof URLSearchParams;
 
-             }
 
-             /**
 
-              * Trim excess whitespace off the beginning and end of a string
 
-              *
 
-              * @param {String} str The String to trim
 
-              * @returns {String} The String freed of excess whitespace
 
-              */
 
-             function trim(str) {
 
-                 return str.trim ? str.trim() : str.replace(/^\s+|\s+$/g, '');
 
-             }
 
-             /**
 
-              * Determine if we're running in a standard browser environment
 
-              *
 
-              * This allows axios to run in a web worker, and react-native.
 
-              * Both environments support XMLHttpRequest, but not fully standard globals.
 
-              *
 
-              * web workers:
 
-              *  typeof window -> undefined
 
-              *  typeof document -> undefined
 
-              *
 
-              * react-native:
 
-              *  navigator.product -> 'ReactNative'
 
-              * nativescript
 
-              *  navigator.product -> 'NativeScript' or 'NS'
 
-              */
 
-             function isStandardBrowserEnv() {
 
-                 if (typeof navigator !== 'undefined' && (navigator.product === 'ReactNative' ||
 
-                     navigator.product === 'NativeScript' ||
 
-                     navigator.product === 'NS')) {
 
-                     return false;
 
-                 }
 
-                 return (
 
-                     typeof window !== 'undefined' &&
 
-                     typeof document !== 'undefined'
 
-                 );
 
-             }
 
-             /**
 
-              * Iterate over an Array or an Object invoking a function for each item.
 
-              *
 
-              * If `obj` is an Array callback will be called passing
 
-              * the value, index, and complete array for each item.
 
-              *
 
-              * If 'obj' is an Object callback will be called passing
 
-              * the value, key, and complete object for each property.
 
-              *
 
-              * @param {Object|Array} obj The object to iterate
 
-              * @param {Function} fn The callback to invoke for each item
 
-              */
 
-             function forEach(obj, fn) {
 
-                 // Don't bother if no value provided
 
-                 if (obj === null || typeof obj === 'undefined') {
 
-                     return;
 
-                 }
 
-                 // Force an array if not already something iterable
 
-                 if (typeof obj !== 'object') {
 
-                     /*eslint no-param-reassign:0*/
 
-                     obj = [obj];
 
-                 }
 
-                 if (isArray(obj)) {
 
-                     // Iterate over array values
 
-                     for (var i = 0, l = obj.length; i < l; i++) {
 
-                         fn.call(null, obj[i], i, obj);
 
-                     }
 
-                 } else {
 
-                     // Iterate over object keys
 
-                     for (var key in obj) {
 
-                         if (Object.prototype.hasOwnProperty.call(obj, key)) {
 
-                             fn.call(null, obj[key], key, obj);
 
-                         }
 
-                     }
 
-                 }
 
-             }
 
-             /**
 
-              * Accepts varargs expecting each argument to be an object, then
 
-              * immutably merges the properties of each object and returns result.
 
-              *
 
-              * When multiple objects contain the same key the later object in
 
-              * the arguments list will take precedence.
 
-              *
 
-              * Example:
 
-              *
 
-              * ```js
 
-              * var result = merge({foo: 123}, {foo: 456});
 
-              * console.log(result.foo); // outputs 456
 
-              * ```
 
-              *
 
-              * @param {Object} obj1 Object to merge
 
-              * @returns {Object} Result of all merge properties
 
-              */
 
-             function merge(/* obj1, obj2, obj3, ... */) {
 
-                 var result = {};
 
-                 function assignValue(val, key) {
 
-                     if (isPlainObject(result[key]) && isPlainObject(val)) {
 
-                         result[key] = merge(result[key], val);
 
-                     } else if (isPlainObject(val)) {
 
-                         result[key] = merge({}, val);
 
-                     } else if (isArray(val)) {
 
-                         result[key] = val.slice();
 
-                     } else {
 
-                         result[key] = val;
 
-                     }
 
-                 }
 
-                 for (var i = 0, l = arguments.length; i < l; i++) {
 
-                     forEach(arguments[i], assignValue);
 
-                 }
 
-                 return result;
 
-             }
 
-             /**
 
-              * Extends object a by mutably adding to it the properties of object b.
 
-              *
 
-              * @param {Object} a The object to be extended
 
-              * @param {Object} b The object to copy properties from
 
-              * @param {Object} thisArg The object to bind function to
 
-              * @return {Object} The resulting value of object a
 
-              */
 
-             function extend(a, b, thisArg) {
 
-                 forEach(b, function assignValue(val, key) {
 
-                     if (thisArg && typeof val === 'function') {
 
-                         a[key] = bind(val, thisArg);
 
-                     } else {
 
-                         a[key] = val;
 
-                     }
 
-                 });
 
-                 return a;
 
-             }
 
-             /**
 
-              * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)
 
-              *
 
-              * @param {string} content with BOM
 
-              * @return {string} content value without BOM
 
-              */
 
-             function stripBOM(content) {
 
-                 if (content.charCodeAt(0) === 0xFEFF) {
 
-                     content = content.slice(1);
 
-                 }
 
-                 return content;
 
-             }
 
-             module.exports = {
 
-                 isArray: isArray,
 
-                 isArrayBuffer: isArrayBuffer,
 
-                 isBuffer: isBuffer,
 
-                 isFormData: isFormData,
 
-                 isArrayBufferView: isArrayBufferView,
 
-                 isString: isString,
 
-                 isNumber: isNumber,
 
-                 isObject: isObject,
 
-                 isPlainObject: isPlainObject,
 
-                 isUndefined: isUndefined,
 
-                 isDate: isDate,
 
-                 isFile: isFile,
 
-                 isBlob: isBlob,
 
-                 isFunction: isFunction,
 
-                 isStream: isStream,
 
-                 isURLSearchParams: isURLSearchParams,
 
-                 isStandardBrowserEnv: isStandardBrowserEnv,
 
-                 forEach: forEach,
 
-                 merge: merge,
 
-                 extend: extend,
 
-                 trim: trim,
 
-                 stripBOM: stripBOM
 
-             };
 
-             /***/ })
 
-         /******/ });
 
- });
 
 
  |