Automated build '' typescript-axios sdk: 4638458958

This commit is contained in:
GitHub Action Bot
2023-04-07 13:16:12 +00:00
parent f80060880f
commit 6367e344e7
604 changed files with 1122802 additions and 0 deletions

17
node_modules/@babel/runtime/helpers/esm/construct.js generated vendored Normal file
View File

@@ -0,0 +1,17 @@
import setPrototypeOf from "./setPrototypeOf.js";
import isNativeReflectConstruct from "./isNativeReflectConstruct.js";
export default function _construct(Parent, args, Class) {
if (isNativeReflectConstruct()) {
_construct = Reflect.construct.bind();
} else {
_construct = function _construct(Parent, args, Class) {
var a = [null];
a.push.apply(a, args);
var Constructor = Function.bind.apply(Parent, a);
var instance = new Constructor();
if (Class) setPrototypeOf(instance, Class.prototype);
return instance;
};
}
return _construct.apply(null, arguments);
}