UNPKG

anim8-core

Version:

Custom JavaScript animation library with modular effects

4 lines (3 loc) 87 B
export function easeOutExpo(t) { return t === 1 ? 1 : 1 - Math.pow(2, -10 * t); }