mirror of
https://github.com/jquery/jquery.git
synced 2026-02-01 11:55:22 -05:00
Make iterating over jQuery objects possible using ES 2015 for-of:
for ( node of $( "<div id=narwhal>" ) ) {
console.log( node.id ); // "narwhal"
}
(partially cherry-picked from bb026fc12c)
Fixes gh-1693