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

Function getEasing

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

Source from the content-addressed store, hash-verified

326 };
327
328 const getEasing = () => {
329 if (shouldForceLinearEasing) {
330 return 'linear';
331 }
332 if (_easing !== undefined) {
333 return _easing;
334 }
335 if (parentAnimation) {
336 return parentAnimation.getEasing();
337 }
338
339 return 'linear';
340 };
341
342 const getDuration = () => {
343 if (shouldForceSyncPlayback) {

Callers 2

initializeWebAnimationFunction · 0.85
updateWebAnimationFunction · 0.85

Calls 1

getEasingMethod · 0.80

Tested by

no test coverage detected