source: node_modules/@babel/runtime-corejs3/helpers/wrapNativeSuper.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.4 KB
Line 
1var _Map = require("core-js-pure/features/map/index.js");
2var _Object$create = require("core-js-pure/features/object/create.js");
3var getPrototypeOf = require("./getPrototypeOf.js");
4var setPrototypeOf = require("./setPrototypeOf.js");
5var isNativeFunction = require("./isNativeFunction.js");
6var construct = require("./construct.js");
7function _wrapNativeSuper(Class) {
8 var _cache = typeof _Map === "function" ? new _Map() : undefined;
9 module.exports = _wrapNativeSuper = function _wrapNativeSuper(Class) {
10 if (Class === null || !isNativeFunction(Class)) return Class;
11 if (typeof Class !== "function") {
12 throw new TypeError("Super expression must either be null or a function");
13 }
14 if (typeof _cache !== "undefined") {
15 if (_cache.has(Class)) return _cache.get(Class);
16 _cache.set(Class, Wrapper);
17 }
18 function Wrapper() {
19 return construct(Class, arguments, getPrototypeOf(this).constructor);
20 }
21 Wrapper.prototype = _Object$create(Class.prototype, {
22 constructor: {
23 value: Wrapper,
24 enumerable: false,
25 writable: true,
26 configurable: true
27 }
28 });
29 return setPrototypeOf(Wrapper, Class);
30 }, module.exports.__esModule = true, module.exports["default"] = module.exports;
31 return _wrapNativeSuper(Class);
32}
33module.exports = _wrapNativeSuper, module.exports.__esModule = true, module.exports["default"] = module.exports;
Note: See TracBrowser for help on using the repository browser.