gitextract_2t0s81jl/ ├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github/ │ ├── FUNDING.yml │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ ├── feature_request.md │ └── regular-issue.md ├── .gitignore ├── .npmignore ├── .prettierrc ├── .travis.yml ├── API.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples/ │ ├── basic.html │ └── test.html ├── jsdoc.json ├── package.json ├── performance/ │ ├── TweenMax.js │ ├── es6-tween.html │ ├── gsap.html │ ├── kute.html │ └── kute.js ├── rollup.config.js ├── src/ │ ├── Easing.js │ ├── Interpolation.js │ ├── Interpolator.js │ ├── NodeCache.js │ ├── PlaybackPosition.js │ ├── Timeline.js │ ├── Tween.js │ ├── constants.js │ ├── core.js │ ├── index.js │ ├── selector.js │ └── shim.js ├── test.js └── withPage.js