()
| 20383 | |
| 20384 | if (!isNaN(iterable.length)) { |
| 20385 | var i = -1, next = function next() { |
| 20386 | while (++i < iterable.length) { |
| 20387 | if (hasOwn.call(iterable, i)) { |
| 20388 | next.value = iterable[i]; |
| 20389 | next.done = false; |
| 20390 | return next; |
| 20391 | } |
| 20392 | } |
| 20393 | |
| 20394 | next.value = undefined; |
| 20395 | next.done = true; |
| 20396 | |
| 20397 | return next; |
| 20398 | }; |
| 20399 | |
| 20400 | return next.next = next; |
| 20401 | } |
no outgoing calls
no test coverage detected