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
Alim Mohammad -
Apestein -
Rashid Shamloo -
rodrigozan -
Once suspended, porkbelly1 will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, porkbelly1 will be able to comment and publish posts again.
Once unpublished, all posts by porkbelly1 will become hidden and only accessible to themselves.
If porkbelly1 is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to porkBelly1.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag porkbelly1:
Unflagging porkbelly1 will restore default visibility to their posts.
Top comments (1)
Some comments may only be visible to logged-in visitors. Sign in to view all comments.