I have this class which does an internal call to a static method:
export class GeneralHelper extends BaseHelper{ static is(env){ return config
if you are calling the static function from inside an instance, the right way to refer to the class static function is:
this.constructor.functionName();
es6 call static methods