I realise that this is really a JavaScript question, but hopefully someone will be able to educate me about this.
C3.Behaviors.Colludium_LFJS.Instance = class LFJSInstance extends C3.SDKBehaviorInstanceBase
I'm looking to make my behavior plugin more modular (it's getting rather unwieldy). How do I extend the behavior instance class? I would like to move a bunch of functions into sub-classes / separate files but still have them accessible from the parent LFJSInstance 'this'. I realise that I don't understand ES6 yet, lol..
Thanks in advance.