1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/@babel/runtime/helpers/inheritsLoose.js

7 lines
358 B
JavaScript
Raw Permalink Normal View History

2024-01-16 21:26:16 +08:00
var setPrototypeOf = require("./setPrototypeOf.js");
2023-12-18 13:12:25 +08:00
function _inheritsLoose(subClass, superClass) {
subClass.prototype = Object.create(superClass.prototype);
subClass.prototype.constructor = subClass;
2024-01-16 21:26:16 +08:00
setPrototypeOf(subClass, superClass);
2023-12-18 13:12:25 +08:00
}
2024-01-16 21:26:16 +08:00
module.exports = _inheritsLoose, module.exports.__esModule = true, module.exports["default"] = module.exports;