main page
This commit is contained in:
25
node_modules/@babel/helpers/lib/helpers/inherits.js
generated
vendored
Normal file
25
node_modules/@babel/helpers/lib/helpers/inherits.js
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = _inherits;
|
||||
var _setPrototypeOf = require("./setPrototypeOf.js");
|
||||
function _inherits(subClass, superClass) {
|
||||
if (typeof superClass !== "function" && superClass !== null) {
|
||||
throw new TypeError("Super expression must either be null or a function");
|
||||
}
|
||||
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
||||
constructor: {
|
||||
value: subClass,
|
||||
writable: true,
|
||||
configurable: true
|
||||
}
|
||||
});
|
||||
Object.defineProperty(subClass, "prototype", {
|
||||
writable: false
|
||||
});
|
||||
if (superClass) (0, _setPrototypeOf.default)(subClass, superClass);
|
||||
}
|
||||
|
||||
//# sourceMappingURL=inherits.js.map
|
||||
Reference in New Issue
Block a user