├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── dist ├── binary.js ├── easy-fit.js ├── fit.js └── messages.js ├── examples ├── example.fit ├── example.js ├── output.json └── test.js ├── gulpfile.babel.js ├── package.json ├── src ├── binary.js ├── easy-fit.js ├── fit.js └── messages.js ├── test-dist ├── easy-fit-test.js └── test.fit └── test ├── easy-fit-test.js ├── test.fit └── test2.fit /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .idea 3 | .directory 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/.npmignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/README.md -------------------------------------------------------------------------------- /dist/binary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/dist/binary.js -------------------------------------------------------------------------------- /dist/easy-fit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/dist/easy-fit.js -------------------------------------------------------------------------------- /dist/fit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/dist/fit.js -------------------------------------------------------------------------------- /dist/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/dist/messages.js -------------------------------------------------------------------------------- /examples/example.fit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/examples/example.fit -------------------------------------------------------------------------------- /examples/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/examples/example.js -------------------------------------------------------------------------------- /examples/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/examples/output.json -------------------------------------------------------------------------------- /examples/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/examples/test.js -------------------------------------------------------------------------------- /gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/gulpfile.babel.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/package.json -------------------------------------------------------------------------------- /src/binary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/src/binary.js -------------------------------------------------------------------------------- /src/easy-fit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/src/easy-fit.js -------------------------------------------------------------------------------- /src/fit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/src/fit.js -------------------------------------------------------------------------------- /src/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/src/messages.js -------------------------------------------------------------------------------- /test-dist/easy-fit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/test-dist/easy-fit-test.js -------------------------------------------------------------------------------- /test-dist/test.fit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/test-dist/test.fit -------------------------------------------------------------------------------- /test/easy-fit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/test/easy-fit-test.js -------------------------------------------------------------------------------- /test/test.fit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/test/test.fit -------------------------------------------------------------------------------- /test/test2.fit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierremtb/easy-fit/HEAD/test/test2.fit --------------------------------------------------------------------------------