MCPcopy Index your code
hub / github.com/ionic-team/ionic-framework / getDelay

Function getDelay

core/src/utils/animation/animation.ts:370–382  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

368 };
369
370 const getDelay = () => {
371 if (forceDelayValue !== undefined) {
372 return forceDelayValue;
373 }
374 if (_delay !== undefined) {
375 return _delay;
376 }
377 if (parentAnimation) {
378 return parentAnimation.getDelay();
379 }
380
381 return 0;
382 };
383
384 const getKeyframes = () => {
385 return _keyframes;

Callers 2

initializeWebAnimationFunction · 0.85
updateWebAnimationFunction · 0.85

Calls 1

getDelayMethod · 0.80

Tested by

no test coverage detected