MCPcopy
hub / github.com/react/create-react-app / next

Function next

packages/react-error-overlay/fixtures/bundle.mjs:20385–20398  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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 }

Calls

no outgoing calls

Tested by

no test coverage detected