mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
18 lines
592 B
JavaScript
18 lines
592 B
JavaScript
import getPrototypeOf from "./getPrototypeOf";
|
|
import isNativeReflectConstruct from "./isNativeReflectConstruct";
|
|
import possibleConstructorReturn from "./possibleConstructorReturn";
|
|
export default function _createSuper(Derived) {
|
|
return function () {
|
|
var Super = getPrototypeOf(Derived),
|
|
result;
|
|
|
|
if (isNativeReflectConstruct()) {
|
|
var NewTarget = getPrototypeOf(this).constructor;
|
|
result = Reflect.construct(Super, arguments, NewTarget);
|
|
} else {
|
|
result = Super.apply(this, arguments);
|
|
}
|
|
|
|
return possibleConstructorReturn(this, result);
|
|
};
|
|
} |