You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
789 B
24 lines
789 B
3 years ago
|
var getPrototypeOf = require("./getPrototypeOf.js");
|
||
|
|
||
|
var isNativeReflectConstruct = require("./isNativeReflectConstruct.js");
|
||
|
|
||
|
var possibleConstructorReturn = require("./possibleConstructorReturn.js");
|
||
|
|
||
|
function _createSuper(Derived) {
|
||
|
var hasNativeReflectConstruct = isNativeReflectConstruct();
|
||
|
return function _createSuperInternal() {
|
||
|
var Super = getPrototypeOf(Derived),
|
||
|
result;
|
||
|
|
||
|
if (hasNativeReflectConstruct) {
|
||
|
var NewTarget = getPrototypeOf(this).constructor;
|
||
|
result = Reflect.construct(Super, arguments, NewTarget);
|
||
|
} else {
|
||
|
result = Super.apply(this, arguments);
|
||
|
}
|
||
|
|
||
|
return possibleConstructorReturn(this, result);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
module.exports = _createSuper, module.exports.__esModule = true, module.exports["default"] = module.exports;
|