* Utility to ensure all indexes are valid. * * @param index The index to be checked. * @returns True if the index is valid for our list of chips.
(index: number)
| 175 | * @returns True if the index is valid for our list of chips. |
| 176 | */ |
| 177 | protected _isValidIndex(index: number): boolean { |
| 178 | return index >= 0 && index < this._chips.length; |
| 179 | } |
| 180 | |
| 181 | /** |
| 182 | * Removes the `tabindex` from the chip set and resets it back afterwards, allowing the |
no outgoing calls
no test coverage detected