(value, suppressEvents)
| 1225 | } |
| 1226 | |
| 1227 | progress(value, suppressEvents) { |
| 1228 | return arguments.length ? this.totalTime( this.duration() * (this._yoyo && !(this.iteration() & 1) ? 1 - value : value) + _elapsedCycleDuration(this), suppressEvents) : (this.duration() ? Math.min(1, this._time / this._dur) : this.rawTime() > 0 ? 1 : 0); |
| 1229 | } |
| 1230 | |
| 1231 | iteration(value, suppressEvents) { |
| 1232 | let cycleDuration = this.duration() + this._rDelay; |
no test coverage detected