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.
19 lines
682 B
19 lines
682 B
3 years ago
|
import getPrototypeOf from "./getPrototypeOf.js";
|
||
|
import isNativeReflectConstruct from "./isNativeReflectConstruct.js";
|
||
|
import possibleConstructorReturn from "./possibleConstructorReturn.js";
|
||
|
export default 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);
|
||
|
};
|
||
|
}
|