You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function_inherits(subClass,superClass){if(typeofsuperClass!=="function"&&superClass!==null){thrownewTypeError("Super expression must either be null or a function");}subClass.prototype=Object.create(superClass&&superClass.prototype,{constructor: {value: subClass,writable: true,configurable: true}});Object.defineProperty(subClass,"prototype",{writable: false});if(superClass)_setPrototypeOf(subClass,superClass);}
function_possibleConstructorReturn(self,call){if(call&&(_typeof(call)==="object"||typeofcall==="function")){returncall;}elseif(call!==void0){thrownewTypeError("Derived constructors may only return object or undefined");}return_assertThisInitialized(self);}
27
+
function_assertThisInitialized(self){if(self===void0){thrownewReferenceError("this hasn't been initialised - super() hasn't been called");}returnself;}
function_toPrimitive(input,hint){if(_typeof(input)!=="object"||input===null)returninput;varprim=input[Symbol.toPrimitive];if(prim!==undefined){varres=prim.call(input,hint||"default");if(_typeof(res)!=="object")returnres;thrownewTypeError("@@toPrimitive must return a primitive value.");}return(hint==="string" ? String : Number)(input);}
function_toPrimitive(input,hint){if(_typeof(input)!=="object"||input===null)returninput;varprim=input[Symbol.toPrimitive];if(prim!==undefined){varres=prim.call(input,hint||"default");if(_typeof(res)!=="object")returnres;thrownewTypeError("@@toPrimitive must return a primitive value.");}return(hint==="string" ? String : Number)(input);}
function_inherits(subClass,superClass){if(typeofsuperClass!=="function"&&superClass!==null){thrownewTypeError("Super expression must either be null or a function");}subClass.prototype=Object.create(superClass&&superClass.prototype,{constructor: {value: subClass,writable: true,configurable: true}});Object.defineProperty(subClass,"prototype",{writable: false});if(superClass)_setPrototypeOf(subClass,superClass);}
function_possibleConstructorReturn(self,call){if(call&&(_typeof(call)==="object"||typeofcall==="function")){returncall;}elseif(call!==void0){thrownewTypeError("Derived constructors may only return object or undefined");}return_assertThisInitialized(self);}
21
+
function_assertThisInitialized(self){if(self===void0){thrownewReferenceError("this hasn't been initialised - super() hasn't been called");}returnself;}
0 commit comments