UNPKG

framer-motion

Version:

A simple and powerful JavaScript animation library

12 lines (9 loc) 278 B
/* Convert velocity into velocity per second @param [number]: Unit per frame @param [number]: Frame duration in ms */ function velocityPerSecond(velocity, frameDuration) { return frameDuration ? velocity * (1000 / frameDuration) : 0; } export { velocityPerSecond };