Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jajbshjahavahh
GitHub Repository: jajbshjahavahh/Gojo-Satoru
Path: blob/master/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js
2593 views
1
import setPrototypeOf from "./setPrototypeOf.js";
2
export default function _inheritsLoose(subClass, superClass) {
3
subClass.prototype = Object.create(superClass.prototype);
4
subClass.prototype.constructor = subClass;
5
setPrototypeOf(subClass, superClass);
6
}
7