()
| 117 | } |
| 118 | |
| 119 | pause() { |
| 120 | if (this.timer) { |
| 121 | window.clearTimeout(this.timer); |
| 122 | this.timer = undefined; |
| 123 | this.setState({ playing: false }); |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | next() { |
| 128 | this.pause(); |
nothing calls this directly
no outgoing calls
no test coverage detected