You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: utils consuming iterables wrapped with iterateFormatted's populating the format function's index arg correctly to treat the iterable's current value as the first yield (#102)
iterationIdx=1;// If source has a current value, it should have been the "first iteration" already, so in that case the right up next one here is *the second* already (index of 1)
constnewPrevResults=ref.current.currResults.slice(0);// Using `.slice(0)` in attempt to copy the array faster than `[...ref.current.currResults]` would
letiterationIdx=latestInputRefCurrent.value ? 1 : 0;// If source has a current value, it should have been the "first iteration" already, so in that case the right up next one here is *the second* already (index of 1)
0 commit comments