in helpers/navigation/nav_node.js [2:10]
constructor({ title, path, parent = null, depth }) {
this.id = `${parent?.id || ''}${title}_${path}_`;
this.title = title;
this.path = path;
this.parent = parent;
this.depth = depth;
this.isActive = false;
this.children = [];
}