Files
Ammaar Reshi d6025af146 Initial commit
2025-01-04 14:06:53 +00: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 };