()
| 1145 | this._loop(); |
| 1146 | } |
| 1147 | pause() { |
| 1148 | this.running = false; |
| 1149 | if (rafRef.current) { |
| 1150 | cancelAnimationFrame(rafRef.current); |
| 1151 | rafRef.current = null; |
| 1152 | } |
| 1153 | } |
| 1154 | dispose() { |
| 1155 | try { |
| 1156 | window.removeEventListener("resize", this._resize); |
no outgoing calls
no test coverage detected