From bb026fc12c3c2ad37f47f0919e484bddcdc3d291 Mon Sep 17 00:00:00 2001 From: Michał Gołębiowski Date: Mon, 1 Jun 2015 23:25:38 +0200 Subject: Core: Make jQuery objects iterable Make iterating over jQuery objects possible using ES 2015 for-of: for ( node of $( "
" ) ) { console.log( node.id ); // "narwhal" } Fixes gh-1693 --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 463dea426..eae5df6e6 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,5 @@ /dist /node_modules + +/test/node_smoke_tests/lib/ensure_iterability.js -- cgit v1.2.3