gitextract_1nyfih5p/ ├── .editorconfig ├── .github/ │ └── workflows/ │ └── tests.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc.cjs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README_zh-CN.md ├── assets/ │ └── style.css ├── dist/ │ ├── tween.amd.js │ ├── tween.cjs │ ├── tween.d.ts │ ├── tween.esm.js │ └── tween.umd.js ├── docs/ │ ├── contributor_guide.md │ ├── contributor_guide_zh-CN.md │ ├── user_guide.md │ └── user_guide_zh-CN.md ├── examples/ │ ├── 00_hello_world.html │ ├── 01_bars.html │ ├── 02_black_and_red.html │ ├── 03_graphs.html │ ├── 04_simplest.html │ ├── 05_video_and_time.html │ ├── 06_array_interpolation.html │ ├── 07_dynamic_to.html │ ├── 07a_dynamic_to_two_array_values.html │ ├── 07b_dynamic_to_an_array_of_values.html │ ├── 08_repeat.html │ ├── 09_relative_values.html │ ├── 09_relative_values.js │ ├── 10_yoyo.html │ ├── 10_yoyo.js │ ├── 11_stop_all_chained_tweens.html │ ├── 12_graphs_custom_functions.html │ ├── 13_relative_start_time.html │ ├── 14_pause_tween.html │ ├── 15_complex_properties.html │ ├── 16_animate_an_array_of_values.html │ ├── 17_generate_pow.html │ ├── 18_start_from_current_values.html │ ├── 19_end_tween.html │ ├── css/ │ │ └── style.css │ ├── example-projects/ │ │ ├── nodejs-commonjs/ │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── nodejs-esmodules/ │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── plain-javascript-modules/ │ │ │ ├── README.md │ │ │ ├── animate.js │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── style.css │ │ └── plain-typescript-modules/ │ │ ├── README.md │ │ ├── animate.js │ │ ├── animate.ts │ │ ├── index.html │ │ ├── index.js │ │ ├── index.ts │ │ ├── package.json │ │ ├── style.css │ │ └── tsconfig.json │ ├── js/ │ │ ├── createGraph.js │ │ ├── createPath.js │ │ ├── drawings.js │ │ └── toPhysicalPx.js │ └── video/ │ └── sintel.webm ├── package.json ├── rollup.config.js ├── scripts/ │ └── write-version.js ├── src/ │ ├── Easing.ts │ ├── Group.ts │ ├── Index.ts │ ├── Interpolation.ts │ ├── Now.ts │ ├── Sequence.ts │ ├── Tween.ts │ ├── Version.ts │ ├── mainGroup.ts │ ├── test-performance-now-fake.ts │ └── tests.ts ├── test/ │ └── unit/ │ ├── nodeunit.html │ ├── nodeunit.js │ └── nodeunitheadless.cjs └── tsconfig.json