Hi, Could you add method to get the current state? Current state is saved on `this[STATE]` but I have no chance to get it back except doing `this.__state` :(. ``` javascript class RecursiveIterator { ... getCurrentState() { return this[STATE]; } ... } ```
Hi,
Could you add method to get the current state?
Current state is saved on
this[STATE]but I have no chance to get it back except doingthis.__state:(.