UNPKG

culori

Version:

A general-purpose color library for JavaScript

8 lines (6 loc) 205 B
/* Smootherstep easing function proposed by K. Perlin Reference: https://en.wikipedia.org/wiki/Smoothstep */ const smootherstep = t => t * t * t * (t * (t * 6 - 15) + 10); export default smootherstep;