PATH:
usr
/
local
/
lib
/
node_modules
/
pm2
/
node_modules
/
axios
/
lib
/
core
'use strict'; var utils = require('./../utils'); 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) { this.handlers.push({ fulfilled: fulfilled, rejected: rejected }); 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;
[-] transformData.js
[edit]
[-] dispatchRequest.js
[edit]
[-] buildFullPath.js
[edit]
[-] mergeConfig.js
[edit]
[+]
..
[-] enhanceError.js
[edit]
[-] settle.js
[edit]
[-] createError.js
[edit]
[-] InterceptorManager.js
[edit]
[-] README.md
[edit]
[-] Axios.js
[edit]