securityos/node_modules/framer-motion/dist/es/easing/modifiers/reverse.mjs

6 lines
199 B
JavaScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
// Accepts an easing function and returns a new one that outputs reversed values.
// Turns easeIn into easeOut.
const reverseEasing = (easing) => (p) => 1 - easing(1 - p);
export { reverseEasing };