luxe-frontend/node_modules/motion-utils/dist/es/velocity-per-second.mjs

9 lines
265 B
JavaScript

/*
Convert velocity into velocity per second
*/
/*#__NO_SIDE_EFFECTS__*/
const velocityPerSecond = (velocity, frameDuration) => frameDuration ? velocity * (1000 / frameDuration) : 0;
export { velocityPerSecond };
//# sourceMappingURL=velocity-per-second.mjs.map