Updated the files.
This commit is contained in:
parent
1553e6b971
commit
753967d4f5
23418 changed files with 3784666 additions and 0 deletions
17
my-app/node_modules/@babel/runtime/helpers/esm/inherits.js
generated
vendored
Executable file
17
my-app/node_modules/@babel/runtime/helpers/esm/inherits.js
generated
vendored
Executable file
|
@ -0,0 +1,17 @@
|
|||
import setPrototypeOf from "./setPrototypeOf.js";
|
||||
export default 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) setPrototypeOf(subClass, superClass);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue