Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
17
VApp/node_modules/@babel/runtime/helpers/esm/createSuper.js
generated
vendored
Normal file
17
VApp/node_modules/@babel/runtime/helpers/esm/createSuper.js
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
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);
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user