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

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);