Checks whether the passed-in index is a valid step index.
(index: number)
| 615 | |
| 616 | /** Checks whether the passed-in index is a valid step index. */ |
| 617 | private _isValidIndex(index: number): boolean { |
| 618 | return index > -1 && (!this.steps || index < this.steps.length); |
| 619 | } |
| 620 | } |
no outgoing calls
no test coverage detected