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

7 lines
126 B
JavaScript
Raw Normal View History

2026-03-22 03:21:45 +02:00
var bounceOut = require('./bounce-out')
function bounceIn(t) {
return 1.0 - bounceOut(1.0 - t)
}
module.exports = bounceIn