Files
discord-clone/node_modules/unenv/runtime/npm/inherits.mjs
2023-01-03 09:29:04 -06:00

15 lines
295 B
JavaScript

export default function inherits(ctor, superCtor) {
if (!superCtor) {
return;
}
ctor.super_ = superCtor;
ctor.prototype = Object.create(superCtor.prototype, {
constructor: {
value: ctor,
enumerable: false,
writable: true,
configurable: true
}
});
}