(...args)
| 184 | } |
| 185 | |
| 186 | hoverStart(...args) { |
| 187 | if (this.props.pause === 'hover') { |
| 188 | this.clearInterval(); |
| 189 | } |
| 190 | if (this.props.mouseEnter) { |
| 191 | this.props.mouseEnter(...args); |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | hoverEnd(...args) { |
| 196 | if (this.props.pause === 'hover') { |
nothing calls this directly
no test coverage detected