Skip to content

Spread operator and NodeLists

Hi guys this issue seems to be related to issue #40 (closed) but is more so related to NodeLists

screenshot

Basically input: [...document.querySelectorAll(..)] outputs from buble [].concat(document.querySelectorAll(..)) which results into the result shown one 1st line in the screenshot but it seems like the output should be the same as the 2nd line how chrome canary interpreted it.

Currently my solution is to do Array.from(elements) but i was wondering if that is something buble could support?

Thanks for the project great work!