github-pages-deploy-action/node_modules/@babel/runtime/helpers/esm/createSuper.js

18 lines
592 B
JavaScript
Raw Normal View History

2020-03-22 05:13:25 +08:00
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);
};
}