Fixes #5 #6
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This update fixes issue #5 when resolving full path names by allowing traversing to the root node. Previously, traversal would stop when
j === 0
orj === dad[j]
, both of which are true for the root node.There's a small issue where if an element is its own parent, then the loop will not terminate. That will be fixed in a separate commit