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
{{ message }}
This repository has been archived by the owner on Mar 2, 2021. It is now read-only.
Probably slightly faster to use lastChild something like this:
constnode=changeList.stack.pop();constparent=node.parentNode;letlast=parent.lastChild;while(last!==node){last.remove();last=parent.lastChild;}// last === nodenode.remove();
than how we are currently using nextSibling.
The text was updated successfully, but these errors were encountered:
Probably slightly faster to use
lastChild
something like this:than how we are currently using
nextSibling
.The text was updated successfully, but these errors were encountered: