Model.prototype.isParentOf = function isParentOf(node) {
    return (this.lft < node.lft && this.rgt > node.rgt && this.tree === node.tree);
  };