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

package.lib.easing.js Maven / Gradle / Ivy

There is a newer version: 10.17.0
Show newest version
import { isEasingList } from "./is";
import { wrap } from "./wrap";
export function getEasingForSegment(easing, i) {
    return isEasingList(easing)
        ? easing[wrap(0, easing.length, i)]
        : easing;
}
//# sourceMappingURL=easing.js.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy