/**
* The methodoflinearinterpolation (lerp) toeasinganimations.
*
* @param{number} x - first value
* @param{number}y - second value
* @param{number} a - amount to interpolate between xandy
* @return{number}
*/
module.exports = (x, y, a) => (1 - a) * x + a * y;