├── .gitignore ├── .jshintrc ├── Readme.md ├── index.js ├── package.json ├── penner-easing.js └── test ├── raw-penner-functions.js └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | test/browserified_tests.js -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlotteGore/functional-easing/HEAD/.jshintrc -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlotteGore/functional-easing/HEAD/Readme.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlotteGore/functional-easing/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlotteGore/functional-easing/HEAD/package.json -------------------------------------------------------------------------------- /penner-easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlotteGore/functional-easing/HEAD/penner-easing.js -------------------------------------------------------------------------------- /test/raw-penner-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlotteGore/functional-easing/HEAD/test/raw-penner-functions.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlotteGore/functional-easing/HEAD/test/test.js --------------------------------------------------------------------------------