5 lines
78 B
JavaScript
5 lines
78 B
JavaScript
|
|
function qinticIn(t) {
|
||
|
|
return t * t * t * t * t
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = qinticIn
|