@babel/runtime-corejs3
Version:
babel's modular runtime helpers with core-js@3 polyfilling
13 lines • 662 B
JavaScript
import _Reflect$construct from "core-js-pure/features/reflect/construct.js";
import _pushInstanceProperty from "core-js-pure/features/instance/push.js";
import _bindInstanceProperty from "core-js-pure/features/instance/bind.js";
import isNativeReflectConstruct from "./isNativeReflectConstruct.js";
import setPrototypeOf from "./setPrototypeOf.js";
function _construct(t, e, r) {
if (isNativeReflectConstruct()) return _Reflect$construct.apply(null, arguments);
var o = [null];
_pushInstanceProperty(o).apply(o, e);
var p = new (_bindInstanceProperty(t).apply(t, o))();
return r && setPrototypeOf(p, r.prototype), p;
}
export { _construct as default };