Files
JiboSDK/node_modules/eases/cubic-in.js

5 lines
68 B
JavaScript
Raw Normal View History

2026-03-22 03:21:45 +02:00
function cubicIn(t) {
return t * t * t
}
module.exports = cubicIn