securityos/node_modules/framer-motion/dist/es/utils/velocity-per-second.mjs

12 lines
278 B
JavaScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
/*
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 };