5 lines
79 B
JavaScript
5 lines
79 B
JavaScript
function quarticIn(t) {
|
|
return Math.pow(t, 4.0)
|
|
}
|
|
|
|
module.exports = quarticIn |