mirror of
https://github.com/jquery/jquery.git
synced 2026-01-10 10:18:04 -05:00
Make iterating over jQuery objects possible using ES 2015 for-of:
for ( node of $( "<div id=narwhal>" ) ) {
console.log( node.id ); // "narwhal"
}
Fixes gh-1693
15 lines
154 B
Plaintext
15 lines
154 B
Plaintext
.project
|
|
.settings
|
|
*~
|
|
*.diff
|
|
*.patch
|
|
/*.html
|
|
.DS_Store
|
|
.bower.json
|
|
.sizecache.json
|
|
|
|
/dist
|
|
/node_modules
|
|
|
|
/test/node_smoke_tests/lib/ensure_iterability.js
|