mirror of
https://github.com/tenrok/axios.git
synced 2026-06-20 20:00:40 +03:00
Modify createError and enhanceError functions to accept response as parameter
This commit is contained in:
@@ -1,17 +1,19 @@
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* Update an Error with the specified config and optional error code.
|
||||
* Update an Error with the specified config, error code, and response.
|
||||
*
|
||||
* @param {Error} error The error to update.
|
||||
* @param {Object} config The config object.
|
||||
* @param {Object} config The config.
|
||||
* @param {string} [code] The error code (for example, 'ECONNABORTED').
|
||||
@ @param {Object} [response] The response.
|
||||
* @returns {Error} The error.
|
||||
*/
|
||||
module.exports = function enhanceError(error, config, code) {
|
||||
module.exports = function enhanceError(error, config, code, response) {
|
||||
error.config = config;
|
||||
if (code) {
|
||||
error.code = code;
|
||||
}
|
||||
error.response = response;
|
||||
return error;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user