UNPKG

anim8-core

Version:

Custom JavaScript animation library with modular effects

6 lines (4 loc) 106 B
// src/easings/easeOutCubic.js export function easeOutCubic(t) { return 1 - Math.pow(1 - t, 3); }