()
| 100 | } |
| 101 | |
| 102 | prev() { |
| 103 | this.pause(); |
| 104 | const cursor = this.props.player.cursor - 1; |
| 105 | if (!this.isValidCursor(cursor)) return false; |
| 106 | this.props.setCursor(cursor); |
| 107 | return true; |
| 108 | } |
| 109 | |
| 110 | resume(wrap = false) { |
| 111 | this.pause(); |
nothing calls this directly
no outgoing calls
no test coverage detected