generated

This commit is contained in:
github-actions
2022-03-21 07:06:55 +00:00
parent c6038ac85d
commit 0a939bd428
1157 changed files with 207156 additions and 1 deletions

13
node_modules/axios/lib/helpers/isAxiosError.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
'use strict';
var utils = require('./../utils');
/**
* 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 utils.isObject(payload) && (payload.isAxiosError === true);
};