Blame view

node_modules/@babel/runtime/helpers/esm/inheritsLoose.js 204 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
  export default function _inheritsLoose(subClass, superClass) {
    subClass.prototype = Object.create(superClass.prototype);
    subClass.prototype.constructor = subClass;
    subClass.__proto__ = superClass;
  }