Files
turftracker/frontend/node_modules/framer-motion/dist/es/easing/anticipate.mjs
2026-04-09 13:19:47 -05:00

6 lines
161 B
JavaScript

import { backIn } from './back.mjs';
const anticipate = (p) => (p *= 2) < 1 ? 0.5 * backIn(p) : 0.5 * (2 - Math.pow(2, -10 * (p - 1)));
export { anticipate };