mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-15 22:36:30 +00:00
5 lines
68 B
JavaScript
5 lines
68 B
JavaScript
function cubicIn(t) {
|
|
return t * t * t
|
|
}
|
|
|
|
module.exports = cubicIn |