All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.easing.es.js Maven / Gradle / Ivy

There is a newer version: 10.17.0
Show newest version
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 };




© 2015 - 2024 Weber Informatics LLC | Privacy Policy