exports.__esModule = true;
exports.EaseOutQuint = function (from, to, currentFrame, totalFrames) {
currentFrame /= totalFrames;
currentFrame--;
return (to - from) * (currentFrame * currentFrame * currentFrame * currentFrame * currentFrame + 1) + from;
};