axios-axios/lib/core
Nitya Jain f53ebf2198
fix(core): use strict equality in buildFullPath check (#7252)
Replace loose equality (==) with strict equality (===)

Co-authored-by: Jay <jasonsaayman@gmail.com>
2026-04-07 19:48:21 +02:00
..
Axios.js fix: unrestricted cloud metadata exfiltration via header injection chain (#10660) 2026-04-06 14:01:54 +02:00
AxiosError.js fix(core): copy status from source error in AxiosError.from (#7403) 2026-02-18 19:33:28 +02:00
AxiosHeaders.js fix: unrestricted cloud metadata exfiltration via header injection chain (#10660) 2026-04-06 14:01:54 +02:00
buildFullPath.js fix(core): use strict equality in buildFullPath check (#7252) 2026-04-07 19:48:21 +02:00
dispatchRequest.js feat: implement prettier and fix all issues (#7385) 2026-02-14 16:59:48 +02:00
InterceptorManager.js feat: implement prettier and fix all issues (#7385) 2026-02-14 16:59:48 +02:00
mergeConfig.js feat: implement prettier and fix all issues (#7385) 2026-02-14 16:59:48 +02:00
README.md Updating lib/core/README.md about Dispatching requests (#3772) 2021-04-30 09:08:50 +02:00
settle.js feat: implement prettier and fix all issues (#7385) 2026-02-14 16:59:48 +02:00
transformData.js style: get rid of redundency in imports (#6315) 2025-11-12 21:11:56 +02:00

axios // core

The modules found in core/ should be modules that are specific to the domain logic of axios. These modules would most likely not make sense to be consumed outside of the axios module, as their logic is too specific. Some examples of core modules are:

  • Dispatching requests
    • Requests sent via adapters/ (see lib/adapters/README.md)
  • Managing interceptors
  • Handling config