hensei-web/node_modules/@babel/runtime/helpers/inheritsLoose.js
2020-09-11 06:44:42 -07:00

7 lines
No EOL
223 B
JavaScript

function _inheritsLoose(subClass, superClass) {
subClass.prototype = Object.create(superClass.prototype);
subClass.prototype.constructor = subClass;
subClass.__proto__ = superClass;
}
module.exports = _inheritsLoose;