(str: string)
| 1314 | } |
| 1315 | |
| 1316 | _startsWithMatchingItems(str: string): Array<IInputSuggestionItemSelectable> { |
| 1317 | return Filters.StartsWith(str, this._selectableItems, "text"); |
| 1318 | } |
| 1319 | |
| 1320 | _getFirstMatchingItem(current: string): IInputSuggestionItemSelectable | undefined { |
| 1321 | if (!this._flattenItems.length) { |
no outgoing calls
no test coverage detected