if (oldFiber.index > newIdx) {
nextOldFiber = oldFiber;
oldFiber = null;
}
what the meaning of the if branch above? Shouldn't it always be oldFiber.index === newIdx?
So I think this branch should be deleting
if (oldFiber.index > newIdx) {
nextOldFiber = oldFiber;
oldFiber = null;
}
what the meaning of the if branch above? Shouldn't it always be oldFiber.index === newIdx?
So I think this branch should be deleting
For further actions, you may consider blocking this person and/or reporting abuse
Ajmal Hasan -
Ellis -
Ann -
MrSuperCraft -
Top comments (1)
Some comments may only be visible to logged-in visitors. Sign in to view all comments.