Merge pull request #419 from VladimirTechMan/master

Removing unused value from return statement in _eachAncestorReverse()
This commit is contained in:
Anton Lavrenov 2018-07-25 09:25:45 +07:00 committed by GitHub
commit 5dcea1863f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1052,7 +1052,7 @@
// func with this because it will be the only node
if (top && top._id === this._id) {
func(this);
return true;
return;
}
family.unshift(this);