()
| 1140 | rafRef.current = requestAnimationFrame(this._loop); |
| 1141 | } |
| 1142 | start() { |
| 1143 | if (this.running) return; |
| 1144 | this.running = true; |
| 1145 | this._loop(); |
| 1146 | } |
| 1147 | pause() { |
| 1148 | this.running = false; |
| 1149 | if (rafRef.current) { |
no outgoing calls
no test coverage detected