0.2.0 • Published 5 years ago

@ungap/dom-iterable v0.2.0

Weekly downloads
78
License
ISC
Repository
github
Last release
5 years ago

DOM Iterable

Build Status Coverage Status Greenkeeper badge WebReflection status

Ensuring common iterable DOM classes can be used in for/of loops.

// works from Chrome 51 on, not before
for (const node of document.querySelectorAll('*'))
  console.log(node);

Live test