| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 3 11 11 11 3 | "use strict";
exports["default"] = function (subClass, superClass) {
Iif (typeof superClass !== "function" && superClass !== null) {
throw new TypeError("Super expression must either be null or a function, not " + typeof superClass);
}
subClass.prototype = Object.create(superClass && superClass.prototype, {
constructor: {
value: subClass,
enumerable: false,
writable: true,
configurable: true
}
});
Eif (superClass) subClass.__proto__ = superClass;
};
exports.__esModule = true; |