function cubicOut(t) { var f = t - 1.0 return f * f * f + 1.0 } module.exports = cubicOut