UNPKG

react-scroll-motion

Version:
8 lines (7 loc) 268 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SimpleInterpolation = void 0; var SimpleInterpolation = function (from, to, value) { return from * (1 - value) + to * value; }; exports.SimpleInterpolation = SimpleInterpolation;