UNPKG

@atlaskit/tokens

Version:

Design tokens are the single source of truth to name and store design decisions.

8 lines 197 B
/** * The linear interpolation function. * * @return start if amount = 0 and stop if amount = 1 */ export function lerp(start, stop, amount) { return (1.0 - amount) * start + amount * stop; }