UNPKG

automation-events

Version:

A module which provides an implementation of an automation event list.

4 lines 266 B
export const getLinearRampValueAtTime = (time, startTime, valueAtStartTime, { endTime, value }) => { return valueAtStartTime + ((time - startTime) / (endTime - startTime)) * (value - valueAtStartTime); }; //# sourceMappingURL=get-linear-ramp-value-at-time.js.map