(elem)
| 5857 | |
| 5858 | function defaultSortFilteredOption(a, b, inputValue, names) { |
| 5859 | function callback(elem) { |
| 5860 | return elem[names.label].indexOf(inputValue) > -1; |
| 5861 | } |
| 5862 | |
| 5863 | return a.findIndex(callback) - b.findIndex(callback); |
| 5864 | } |
no test coverage detected
searching dependent graphs…