source: node_modules/d3-selection/src/selection/iterator.js@ e4c61dd

Last change on this file since e4c61dd was e4c61dd, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Prototype 1.1

  • Property mode set to 100644
File size: 231 bytes
Line 
1export default function*() {
2 for (var groups = this._groups, j = 0, m = groups.length; j < m; ++j) {
3 for (var group = groups[j], i = 0, n = group.length, node; i < n; ++i) {
4 if (node = group[i]) yield node;
5 }
6 }
7}
Note: See TracBrowser for help on using the repository browser.