package.dist.easing.es.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils Show documentation
Show all versions of utils Show documentation
A collection of utility functions for animations.
import { isEasingList } from './is.es.js';
import { wrap } from './wrap.es.js';
function getEasingForSegment(easing, i) {
return isEasingList(easing)
? easing[wrap(0, easing.length, i)]
: easing;
}
export { getEasingForSegment };