mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
25 lines
689 B
JavaScript
25 lines
689 B
JavaScript
var _Reflect$construct = require("../core-js/reflect/construct");
|
|
|
|
var getPrototypeOf = require("./getPrototypeOf");
|
|
|
|
var isNativeReflectConstruct = require("./isNativeReflectConstruct");
|
|
|
|
var possibleConstructorReturn = require("./possibleConstructorReturn");
|
|
|
|
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);
|
|
};
|
|
}
|
|
|
|
module.exports = _createSuper; |