Blame view

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