Get the next spinner character.
()
| 79 | |
| 80 | /** Get the next spinner character. */ |
| 81 | private getNextSpinnerCharacter() { |
| 82 | this.currentSpinnerCharacterIndex = |
| 83 | (this.currentSpinnerCharacterIndex + 1) % this.spinnerCharacters.length; |
| 84 | return this.spinnerCharacters[this.currentSpinnerCharacterIndex]; |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Print the next frame either in CI mode or local terminal mode based on whether the script is run in a |
no outgoing calls
no test coverage detected