inheritsLoose.js 204 Bytes Raw Blame History Permalink 1 2 3 4 5 export default function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }