axios-axios/lib/core
Gabe Mendoza 02c3c69ced
fix: backport allowAbsoluteUrls vuln fix to v0.x (#6829)
* allowAbsoluteUrls

* fix logic - copied from v1.x

* update string

* undo changes to dist/axios.js

* chore: use strict equal in lib/core/buildFullPath.js

---------

Co-authored-by: Jay <jasonsaayman@gmail.com>
2025-03-19 12:24:25 +02:00
..
Axios.js fix: backport allowAbsoluteUrls vuln fix to v0.x (#6829) 2025-03-19 12:24:25 +02:00
AxiosError.js Added data URL support for node.js; (#4725) 2022-05-20 08:04:36 +02:00
buildFullPath.js fix: backport allowAbsoluteUrls vuln fix to v0.x (#6829) 2025-03-19 12:24:25 +02:00
dispatchRequest.js Fixing content-type header repeated (#4745) 2022-05-28 11:52:50 +02:00
InterceptorManager.js Interceptor clear (#4248) 2022-05-05 21:31:06 +02:00
mergeConfig.js fix(security): fixed CVE-2023-45857 by backporting withXSRFToken option to v0.x (#6091) 2024-01-19 18:33:41 +02:00
README.md Updating lib/core/README.md about Dispatching requests (#3772) 2021-04-30 09:08:50 +02:00
settle.js Refactored AxiosError to a constructor; 2021-10-14 19:15:16 +03:00
transformData.js Adding HTTP status code for transformResponse (#4580) 2022-05-09 19:25:16 +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