Available as CDN from https://unpkg.com/eases-cdn/
This is a grab-bag of Robert Penner's easing equations, most of the code from glsl-easings.
// import all eases
import eases from 'eases-cdn'
// import only the single function
const { quadIn } from 'eases-cdn'
You can see the easings graph here https://codepen.io/kunukn/full/mpVJOm/
All easing functions only remap a time value, and all have the same signature.
Where t
is typically a value between 0 and 1, and it returns a new float that has been eased.
MIT, see LICENSE.md for details.