menu.js 201 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 export const checkNodesPathIsHide = (node) => { if (node.data.hide) { return true; } if (node.parent) { return checkNodesPathIsHide(node.parent); } return false; };