6 lines
142 B
JavaScript
6 lines
142 B
JavaScript
|
|
function calculateRepeatDuration(duration, repeat, _repeatDelay) {
|
||
|
|
return duration * (repeat + 1);
|
||
|
|
}
|
||
|
|
|
||
|
|
export { calculateRepeatDuration };
|