create project
This commit is contained in:
47
kitabcitab/node_modules/@swc/helpers/lib/_construct.js
generated
vendored
Normal file
47
kitabcitab/node_modules/@swc/helpers/lib/_construct.js
generated
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "default", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return _construct;
|
||||
}
|
||||
});
|
||||
var _setPrototypeOfMjs = /*#__PURE__*/ _interopRequireDefault(require("./_set_prototype_of.js"));
|
||||
function _interopRequireDefault(obj) {
|
||||
return obj && obj.__esModule ? obj : {
|
||||
default: obj
|
||||
};
|
||||
}
|
||||
function isNativeReflectConstruct() {
|
||||
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
||||
if (Reflect.construct.sham) return false;
|
||||
if (typeof Proxy === "function") return true;
|
||||
try {
|
||||
Date.prototype.toString.call(Reflect.construct(Date, [], function() {}));
|
||||
return true;
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
function construct(Parent, args, Class) {
|
||||
if (isNativeReflectConstruct()) {
|
||||
construct = Reflect.construct;
|
||||
} 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) (0, _setPrototypeOfMjs.default)(instance, Class.prototype);
|
||||
return instance;
|
||||
};
|
||||
}
|
||||
return construct.apply(null, arguments);
|
||||
}
|
||||
function _construct(Parent, args, Class) {
|
||||
return construct.apply(null, arguments);
|
||||
}
|
||||
Reference in New Issue
Block a user