mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-16 23:16:14 +00:00
5 lines
86 B
JavaScript
5 lines
86 B
JavaScript
|
|
function qinticOut(t) {
|
||
|
|
return --t * t * t * t * t + 1
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = qinticOut
|