(state: ITimerState)
| 278 | public set timescale(s: number) { this._media.playbackRate = s } |
| 279 | |
| 280 | private _setState(state: ITimerState) { |
| 281 | if (this._state !== state) { |
| 282 | this._state = state |
| 283 | this._onStateChangeCb(this._state) |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | private _tick() { |
| 288 | // In Safari, the audio currentTime may exceed it's duration, |
no outgoing calls
no test coverage detected