function anyIsMatching()

in src/app/configuration/component/project-select.js [41:45]


function anyIsMatching(projects, query) {
  return projects.some(it =>
    isMatching(it, query) ||
    (it.children ? anyIsMatching(it.children, query) : false));
}