UNPKG

@atlaskit/tokens

Version:

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

14 lines (13 loc) 291 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.lerp = lerp; /** * The linear interpolation function. * * @return start if amount = 0 and stop if amount = 1 */ function lerp(start, stop, amount) { return (1.0 - amount) * start + amount * stop; }