MCPcopy Create free account
hub / github.com/bhattaraijay05/meditation / decreaseTime

Function decreaseTime

frontend/app/helpers/audio-helper.ts:361–371  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls 1

seekToTimeFunction · 0.85

Tested by

no test coverage detected