()
| 359 | } |
| 360 | |
| 361 | function decreaseTime() { |
| 362 | if (player) { |
| 363 | player.getCurrentTime(seconds => { |
| 364 | if (seconds - timeRate > 0) { |
| 365 | seekToTime(seconds - timeRate); |
| 366 | } else { |
| 367 | seekToTime(0); |
| 368 | } |
| 369 | }); |
| 370 | } |
| 371 | } |
| 372 | |
| 373 | const jumpSecond = (secondDelta: number) => { |
| 374 | if (player) { |
nothing calls this directly
no test coverage detected