5 lines
86 B
JavaScript
5 lines
86 B
JavaScript
function qinticOut(t) {
|
|
return --t * t * t * t * t + 1
|
|
}
|
|
|
|
module.exports = qinticOut |