function includesInputValue()

in apis/scaladoc-1.0.0/scripts/components/DocumentableList.js [141:145]


    function includesInputValue() {
      const lcValue = filter.value.toLowerCase()
      return elementData.name.toLowerCase().includes(lcValue) 
          || elementData.description.toLowerCase().includes(lcValue);
    }