import { velocityPerSecond } from "@motionone/utils"; const sampleT = 5; // ms export function calcGeneratorVelocity(resolveValue, t, current) { const prevT = Math.max(t - sampleT, 0); return velocityPerSecond(current - resolveValue(prevT), t - prevT); } //# sourceMappingURL=velocity.js.map