Arthur Stolyar

Results 235 comments of Arthur Stolyar

Also, Babel's `for..of` generated a lot of code because it relies on `Symbol` and then fallbacks to `Array`. So check for `Symbol` might not be needed there if you are...

TBH I just don't see why support iterables right now. I mean, they aren't everywhere supported natively so typically you will need to convert, say `HTMLCollection` to `Array` anyway in...

First 2 ways do 2 iterations (reverse + iterate; from + iterate). If we are going to support this, then we should write iterater on our own and avoid traspiled...

@neeharv unfortunately there is no dev mode in Preact yet. Just some code to consider: ![image](https://cloud.githubusercontent.com/assets/1189265/21567603/64be26fa-cebe-11e6-86d3-e416c4f582e7.png)

@developit can we just have `option.toArray` hook of something like that? Then those who need iterables work could just hook in that functionality. We can even publish it to npm...